File tree 7 files changed +92
-1024
lines changed
7 files changed +92
-1024
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,24 @@ jobs:
16
16
with :
17
17
fetch-depth : 0
18
18
19
- - uses : actions/setup-node@v4
19
+ - name : Install pnpm
20
+ uses : pnpm/action-setup@v4
21
+
22
+ - name : Set node
23
+ uses : actions/setup-node@v4
20
24
with :
21
- node-version : 18.18.2
25
+ node-version : lts/*
26
+ cache : pnpm
27
+ registry-url : ' https://registry.npmjs.org'
22
28
23
29
- run : npx changelogithub
24
30
env :
25
31
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
32
+
33
+ - name : Install Dependencies
34
+ run : pnpm i
35
+
36
+ - run : pnpm publish -r --access public
37
+ env :
38
+ NODE_AUTH_TOKEN : ${{secrets.NODE_AUTH_TOKEN}}
39
+ NPM_CONFIG_PROVENANCE : true
Original file line number Diff line number Diff line change 14
14
"dev" : " pnpm run stub && pnpm -C packages/devtools dev" ,
15
15
"lint" : " eslint ." ,
16
16
"changelog" : " conventional-changelog -p angular -i CHANGELOG.md -s" ,
17
- "release" : " pnpm test && bumpp -r -x \" pnpm run changelog\" --all && pnpm -r publish " ,
17
+ "release" : " pnpm test && bumpp -r -x \" pnpm run changelog\" --all" ,
18
18
"test" : " pnpm lint" ,
19
19
"docs" : " nuxi dev docs" ,
20
20
"docs:build" : " CI=true nuxi generate docs" ,
53
53
"vue" : " ^3.4.38" ,
54
54
"vue-tsc" : " ^2.0.29"
55
55
},
56
+ "resolutions" : {
57
+ "esbuild" : " ^0.21.5"
58
+ },
56
59
"simple-git-hooks" : {
57
60
"pre-commit" : " npx lint-staged"
58
61
},
Original file line number Diff line number Diff line change 37
37
"build" : " unbuild" ,
38
38
"stub" : " unbuild --stub" ,
39
39
"dev:prepare" : " nr stub" ,
40
- "prepublishOnly " : " pnpm build"
40
+ "prepack " : " pnpm build"
41
41
},
42
42
"peerDependencies" : {
43
43
"vite" : " *"
Original file line number Diff line number Diff line change 31
31
"build" : " nuxt-build-module build" ,
32
32
"stub" : " nuxt-build-module build --stub" ,
33
33
"dev" : " nuxi dev playground" ,
34
- "prepublishOnly " : " npm run build" ,
34
+ "prepack " : " pnpm build" ,
35
35
"playground:build" : " nuxi generate playground"
36
36
},
37
37
"peerDependencies" : {
Original file line number Diff line number Diff line change 22
22
"build" : " unbuild" ,
23
23
"stub" : " unbuild --stub" ,
24
24
"dev:prepare" : " nr stub" ,
25
- "prepublishOnly " : " pnpm build"
25
+ "prepack " : " pnpm build"
26
26
},
27
27
"dependencies" : {
28
28
"consola" : " ^3.2.3" ,
Original file line number Diff line number Diff line change 36
36
"dev" : " nuxi dev client" ,
37
37
"dev:playground" : " pnpm build && nuxi dev playground" ,
38
38
"dev:prepare" : " nuxi prepare client" ,
39
- "prepublishOnly " : " pnpm build"
39
+ "prepack " : " pnpm build"
40
40
},
41
41
"peerDependencies" : {
42
42
"vite" : " *"
You can’t perform that action at this time.
0 commit comments