Skip to content

Commit

Permalink
Move back to using prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadiestGoat committed Oct 16, 2023
1 parent 1a6b242 commit 76f1b08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run cspell:check && pnpm run typescript:check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix && pnpm run cspell:check && pnpm run typescript:check",
"build:types": "rm -rf dist; tsc --declaration --emitDeclarationOnly --noEmit false -p tsconfig.json --outDir dist; rm -rf dist/scripts; mv dist/src/* dist; rm -rf dist/src; cp src/*.d.ts dist; tsx scripts/create-import-wrappers.mts",
"postinstall": "tsx scripts/build-bin.mts; [ ! -e src ] && exit 0 || pnpm run build:types",
"prepublishOnly": "pnpm run build:types",
"postinstall": "tsx scripts/build-bin.mts",
"prepare": "[ ! -e src ] && exit 0 || pnpm run build:types",
"postpublish": "rm -rf *.d.ts; rm -rf dist; npm run build",
"docs": "typedoc src/renderer/replugged.ts --excludeExternals",
"docs:watch": "pnpm run docs --watch"
Expand Down

0 comments on commit 76f1b08

Please sign in to comment.