Skip to content

Commit

Permalink
fix(🐛): yarn pack regression (#2629)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Sep 11, 2024
1 parent 8816991 commit 25b1fb3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/build-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
with:
submodules: recursive

- name: checkout
uses: actions/checkout@v2
with:
submodules: recursive

- name: Setup
uses: ./.github/actions/setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-skia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
WORKING_DIRECTORY: ./package
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v3
- name: Setup
uses: ./.github/actions/setup
with:
cache: yarn
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Documentation
run: |
Expand Down
23 changes: 10 additions & 13 deletions packages/skia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"src/**",
"lib/**",
"README.md",
"LICENSE.md",
"android/build.gradle",
Expand All @@ -31,14 +28,14 @@
"jestSetup.mjs",
"jestEnv.mjs",
"cpp/**/*.{h,cpp}",
"ios",
"libs/ios/libskia.xcframework",
"libs/ios/libskshaper.xcframework",
"libs/ios/libsvg.xcframework",
"libs/ios/libskottie.xcframework",
"libs/ios/libsksg.xcframework",
"libs/ios/libskparagraph.xcframework",
"libs/ios/libskunicode.xcframework",
"ios/**",
"libs/ios/libskia.xcframework/**",
"libs/ios/libskshaper.xcframework/**",
"libs/ios/libsvg.xcframework/**",
"libs/ios/libskottie.xcframework/**",
"libs/ios/libsksg.xcframework/**",
"libs/ios/libskparagraph.xcframework/**",
"libs/ios/libskunicode.xcframework/**",
"react-native-skia.podspec",
"scripts/setup-canvaskit.js",
"dist/**"
Expand Down

0 comments on commit 25b1fb3

Please sign in to comment.