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

@@ -26,11 +26,11 @@
"scripts": {
"test": "echo 'angular no tests yet'",
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
"build.prod": "npm run clean && npm run build",
"build.watch": "npm run build -- --watch",
"build.prod": "pnpm run clean && pnpm run build",
"build.watch": "pnpm run build -- --watch",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts && npm run prettier",
"lint.fix": "eslint . --ext .ts --fix && npm run prettier.fix",
"lint": "eslint . --ext .ts && pnpm run prettier",
"lint.fix": "eslint . --ext .ts --fix && pnpm run prettier.fix",
"prettier": "prettier \"**/*.ts\" --check",
"prettier.fix": "prettier \"**/*.ts\" --write"
},