File tree Expand file tree Collapse file tree 5 files changed +7097
-5655
lines changed Expand file tree Collapse file tree 5 files changed +7097
-5655
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,19 @@ jobs:
13
13
if : github.event_name == 'push' && startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs'
14
14
steps :
15
15
- uses : actions/checkout@v2
16
- - run : yarn --frozen-lockfile --non-interactive
17
- - run : yarn build:one
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version-file : .nvmrc
19
+ - uses : pnpm/action-setup@v4
20
+ - run : pnpm i --frozen-lockfile
21
+ - run : pnpm build:one
18
22
env :
19
23
VITE_API_SERVER_URL : https://api.vuetifyjs.com
20
24
- run : npm config set //registry.npmjs.org/:_authToken ${NPM_API_KEY:?}
21
25
env :
22
26
NPM_API_KEY : ${{ secrets.NPM_TOKEN }}
23
27
- run : npm publish
24
28
- name : GitHub release
25
- run : yarn conventional-github-releaser -p vuetify
29
+ run : pnpm conventional-github-releaser -p vuetify
26
30
env :
27
31
CONVENTIONAL_GITHUB_RELEASER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ 22.8.0
Original file line number Diff line number Diff line change 23
23
"scripts" : {
24
24
"dev" : " vite" ,
25
25
"build" : " vite build" ,
26
- "build:one" : " vite build --config vite.build.config.ts && yarn build:types" ,
26
+ "build:one" : " vite build --config vite.build.config.ts && pnpm build:types" ,
27
27
"build:dev" : " vite build --mode development --config vite.build.config.ts " ,
28
28
"build:types" : " rimraf types-temp && vue-tsc --pretty -p tsconfig.json && rollup --config rollup.types.config.js && rimraf types-temp" ,
29
- "release" : " yarn build:dev && yarn version && git push --follow-tags" ,
30
- "watch" : " yarn build:dev --watch" ,
29
+ "release" : " pnpm build:dev && pnpm version && git push --follow-tags" ,
30
+ "watch" : " pnpm build:dev --watch" ,
31
31
"preview" : " vite preview" ,
32
32
"lint" : " eslint . --ext .ts,.vue --fix --ignore-path .gitignore" ,
33
33
"test" : " vitest" ,
34
34
"coverage" : " vitest run --coverage" ,
35
- "prepublishOnly" : " yarn build:one" ,
35
+ "prepublishOnly" : " pnpm build:one" ,
36
36
"postversion" : " git push --follow-tags"
37
37
},
38
38
"peerDependencies" : {
86
86
"vue-router" : " ^4.4.0" ,
87
87
"vue-tsc" : " ^2.0.26" ,
88
88
"vuetify" : " ^3.6.11"
89
- }
89
+ },
90
+ "packageManager" :
" [email protected] "
90
91
}
You can’t perform that action at this time.
0 commit comments