File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,8 @@ Only maintainers of the [neovim NPM package](https://www.npmjs.com/package/neovi
218
218
` ` ` bash
219
219
# Choose major/ minor/ patch as needed.
220
220
npm version - w packages/ neovim/ patch
221
- # Note: this copies the top- level README .md to packages/ neovim.
221
+ git commit - m ' release'
222
+ # Note: this copies the top- level README .md / CHANGELOG .md to packages/ neovim/ .
222
223
npm run publish: neovim
223
224
export _VERSION = $(grep - o ' version": "[^"]\+ ' packages / neovim / package .json | sed ' s/.*"//' )
224
225
git tag " v${_VERSION}"
Original file line number Diff line number Diff line change 26
26
"scripts" : {
27
27
"build" : " npm run build --workspaces --if-present" ,
28
28
"dev" : " npm run --stream --parallel dev --workspaces --if-present" ,
29
- "publish:neovim" : " cd packages/neovim && cp ../../README.md . && npm publish" ,
29
+ "publish:neovim" : " cd packages/neovim && cp ../../README.md . && cp ../../CHANGELOG.md . && npm publish" ,
30
30
"test" : " npm run test --workspaces --if-present" ,
31
31
"test-build" : " npm run test-build --workspaces --if-present" ,
32
32
"test-staged" : " npm run test-staged --workspaces --if-present -- --" ,
Original file line number Diff line number Diff line change 38
38
},
39
39
"files" : [
40
40
" README.md" ,
41
+ " CHANGELOG.md" ,
41
42
" scripts/nvim.js" ,
42
43
" scripts/api.js" ,
43
44
" bin/" ,
You can’t perform that action at this time.
0 commit comments