File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ jobs:
194
194
- name : Run e2e tests
195
195
run : pnpm test:e2e
196
196
197
- edge -release :
197
+ nightly -release :
198
198
if : |
199
199
github.event_name == 'push' &&
200
200
!contains(github.event.head_commit.message, '[skip-release]') &&
@@ -243,7 +243,7 @@ jobs:
243
243
name : message-compiler
244
244
path : packages/message-compiler/dist
245
245
246
- - name : Release edge version
247
- run : ./scripts/release-edge .sh
246
+ - name : Release nightly version
247
+ run : ./scripts/release-nightly .sh
248
248
env :
249
249
NPM_AUTH_TOKEN : ${{secrets.NPM_AUTH_TOKEN}}
Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ You can also use a specific version/tag via URLs like <https://unpkg.com/vue-i18
69
69
You can also use a specific version/tag via URLs like <https://unpkg.com/[email protected] /dist/vue-i18n.esm-browser.js>
70
70
71
71
72
- ## Edge version
72
+ ## Nightly version
73
73
74
74
Add the following line to the ` dependencies` in ` package .json ` :
75
75
76
76
` ` ` json
77
- " vue-i18n" : " npm:@vue-i18n-edge "
77
+ " vue-i18n" : " npm:@vue-i18n-nightly "
78
78
` ` `
79
79
80
80
And then run ` npm install` or ` yarn install` or ` pnpm install` .
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ async function main() {
137
137
138
138
for ( const pkg of workspace . packages . filter ( p => ! p . data . private ) ) {
139
139
workspace . setVersion ( pkg . data . name , release )
140
- const newname = pkg . data . name + '-edge '
140
+ const newname = pkg . data . name + '-nightly '
141
141
workspace . rename ( pkg . data . name , newname )
142
142
}
143
143
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ for PKG in packages/* ; do
24
24
fi
25
25
pushd $PKG
26
26
echo " ⚡ Publishing $PKG with edge tag"
27
- pnpm publish --access public --no-git-checks --tag edge
27
+ pnpm publish --access public --no-git-checks --tag nightly
28
28
popd
29
29
fi
30
30
done
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ for PKG in packages/* ; do
23
23
continue
24
24
fi
25
25
pushd $PKG
26
- TAG=" latest "
26
+ TAG=" next "
27
27
echo " ⚡ Publishing $PKG with tag $TAG "
28
28
pnpm publish --access public --no-git-checks --tag $TAG
29
29
popd > /dev/null
You can’t perform that action at this time.
0 commit comments