File tree Expand file tree Collapse file tree 7 files changed +3726
-2856
lines changed Expand file tree Collapse file tree 7 files changed +3726
-2856
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
22
22
- run : corepack enable
23
23
24
- - run : pnpm install --frozen-lockfile
24
+ - run : yarn install --immutable
25
25
26
- - run : pnpm format:check
26
+ - run : yarn format:check
27
27
28
- - run : pnpm build
28
+ - run : yarn build
29
29
30
- - run : pnpm test
30
+ - run : yarn test
Original file line number Diff line number Diff line change @@ -24,12 +24,11 @@ jobs:
24
24
with :
25
25
node-version : 22
26
26
check-latest : true
27
- registry-url : https://registry.npmjs.org
28
27
29
28
- run : corepack enable
30
29
31
- - run : pnpm install --frozen-lockfile
30
+ - run : yarn install --immutable
32
31
33
- - run : pnpm publish --no-git-checks
32
+ - run : yarn npm publish --tolerate-republish
34
33
env :
35
- NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
34
+ NPM_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
Original file line number Diff line number Diff line change
1
+ /.yarn /
1
2
/dist /
2
3
/node_modules /
Original file line number Diff line number Diff line change
1
+ defaultSemverRangePrefix : " "
2
+
3
+ nodeLinker : pnpm
4
+
5
+ npmRegistries :
6
+ //registry.npmjs.org :
7
+ npmAuthToken : " ${NPM_TOKEN:-''}"
8
+
9
+ preferInteractive : true
Original file line number Diff line number Diff line change 73
73
"tsup" : " 8.2.4" ,
74
74
"vitest" : " 2.0.5"
75
75
},
76
- "packageManager" :
" [email protected] .0" ,
76
+ "packageManager" :
" [email protected] .0" ,
77
77
"engines" : {
78
78
"node" : " >=18.0.0"
79
79
},
80
80
"publishConfig" : {
81
81
"access" : " public" ,
82
- "provenance" : true ,
83
82
"registry" : " https://registry.npmjs.org"
84
83
}
85
84
}
You can’t perform that action at this time.
0 commit comments