Skip to content

Commit 25b1fb3

Browse files
authored
fix(🐛): yarn pack regression (#2629)
1 parent 8816991 commit 25b1fb3

File tree

4 files changed

+15
-23
lines changed

4 files changed

+15
-23
lines changed

.github/workflows/build-npm.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ jobs:
1515
with:
1616
submodules: recursive
1717

18-
- name: checkout
19-
uses: actions/checkout@v2
20-
with:
21-
submodules: recursive
22-
2318
- name: Setup
2419
uses: ./.github/actions/setup
2520
with:

.github/workflows/build-skia.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
WORKING_DIRECTORY: ./package
88
steps:
99
- name: checkout
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111
with:
1212
submodules: recursive
1313

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
submodules: recursive
1616

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

2222
- name: Build Documentation
2323
run: |

packages/skia/package.json

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414
"module": "lib/module/index.js",
1515
"types": "lib/typescript/index.d.ts",
1616
"files": [
17-
"src",
18-
"lib",
19-
"!**/__tests__",
20-
"!**/__fixtures__",
21-
"!**/__mocks__",
17+
"src/**",
18+
"lib/**",
2219
"README.md",
2320
"LICENSE.md",
2421
"android/build.gradle",
@@ -31,14 +28,14 @@
3128
"jestSetup.mjs",
3229
"jestEnv.mjs",
3330
"cpp/**/*.{h,cpp}",
34-
"ios",
35-
"libs/ios/libskia.xcframework",
36-
"libs/ios/libskshaper.xcframework",
37-
"libs/ios/libsvg.xcframework",
38-
"libs/ios/libskottie.xcframework",
39-
"libs/ios/libsksg.xcframework",
40-
"libs/ios/libskparagraph.xcframework",
41-
"libs/ios/libskunicode.xcframework",
31+
"ios/**",
32+
"libs/ios/libskia.xcframework/**",
33+
"libs/ios/libskshaper.xcframework/**",
34+
"libs/ios/libsvg.xcframework/**",
35+
"libs/ios/libskottie.xcframework/**",
36+
"libs/ios/libsksg.xcframework/**",
37+
"libs/ios/libskparagraph.xcframework/**",
38+
"libs/ios/libskunicode.xcframework/**",
4239
"react-native-skia.podspec",
4340
"scripts/setup-canvaskit.js",
4441
"dist/**"

0 commit comments

Comments
 (0)