We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b93c41 commit 65ddb5eCopy full SHA for 65ddb5e
README.md
@@ -250,13 +250,11 @@ The docs website is currently not automated. Follow these steps to regenerate it
250
```bash
251
npm run doc -w packages/neovim
252
git checkout gh-pages
253
-mv -f packages/neovim/doc/assets/* assets/
254
-mv -f packages/neovim/doc/classes/* classes/
255
-mv -f packages/neovim/doc/functions/* functions/
256
-mv -f packages/neovim/doc/types/* types/
+shopt -s extglob
+git rm -r !(node_modules|packages)
257
mv packages/neovim/doc/* .
258
rm -r packages/
259
-git add *
+git add !(node_modules|packages)
260
git commit -m 'publish docs'
261
git push origin HEAD:gh-pages
262
```
0 commit comments