chore: update scripts to use pnpm

This commit is contained in:
Liam DeBeasi
2023-11-03 11:45:21 -04:00
parent f4c3ee8673
commit 647320dd4b
6 changed files with 28 additions and 28 deletions

View File

@ -6,11 +6,11 @@
"test.spec": "jest",
"eslint": "eslint src",
"prettier": "prettier \"./src/**/*.{html,ts,tsx,js,jsx}\"",
"lint": "npm run eslint && npm run prettier -- --write --cache",
"lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache",
"lint": "pnpm run eslint && pnpm run prettier -- --write --cache",
"lint.fix": "pnpm run eslint -- --fix && pnpm run prettier -- --write --cache",
"bundle": "rollup --config rollup.config.js",
"build": "npm run clean && npm run bundle",
"build.watch": "npm run bundle -- --watch",
"build": "pnpm run clean && pnpm run bundle",
"build.watch": "pnpm run bundle -- --watch",
"clean": "rimraf dist"
},
"main": "./dist/index.js",