TunnARK
03/10/2022, 6:41 PMdendron --verion
in the terminal, I tried updating manually with npm install --save @dendronhq/dendron-cli@latest
ScriptAutomate
03/10/2022, 6:53 PM# Uninstall at global level
npm remove -g @dendronhq/dendron-cli
# Run the following in your Dendron workspace
rm -rf node_modules
rm -rf .next
# npm without -g installs locally
npm install @dendronhq/dendron-cli@latest
# Prepend all commands with npx for local node packages
npx dendron --version
npx dendron publish init
npx dendron publish dev
Make sure node_modules
is in your .gitignore
, if it isn't already. Same with .next
.ScriptAutomate
03/10/2022, 6:54 PMyarn.lock
then? Or just a package-lock.json
?TunnARK
03/10/2022, 7:08 PMnpm install @dendronhq/dendron-cli@latest
the yarn.lock
got added, I re-run all jobs from github action but no changes
I used your github template from last time: https://github.com/dendronhq/template.publish.github-action
now running your local usage tipsTunnARK
03/10/2022, 7:11 PMnode_modules
.dendron.*
build
.next
.history
docs
TunnARK
03/10/2022, 7:13 PM