Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion type-length-value/js/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

node_modules

pnpm-lock.yaml
yarn.lock

docs
Expand Down
9 changes: 4 additions & 5 deletions type-length-value/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,10 @@
"deploy": "npm run deploy:docs",
"deploy:docs": "npm run docs && gh-pages --dest type-length-value/js --dist docs --dotfiles",
"docs": "shx rm -rf docs && typedoc && shx cp .nojekyll docs/",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"nuke": "shx rm -rf node_modules package-lock.json || true",
"format": "prettier --check src test",
"format:fix": "prettier --write src test",
"lint": "eslint --max-warnings 0 src test",
"lint:fix": "eslint --fix src test",
"postbuild": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"reinstall": "npm run nuke && npm install",
"release": "npm run clean && npm run build",
Expand Down
Loading