Skip to content

Commit

Permalink
fix: scripts with pnpm not npm
Browse files Browse the repository at this point in the history
  • Loading branch information
gafreax committed Feb 22, 2025
1 parent dbab2c5 commit 0156edf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"description": "Simple CSS Parser to tokenize CSS, merge rules, and optimize it",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "npm run build",
"prepublish": "pnpm run build",
"build": "tsc",
"clean": "rimraf dist/",
"start": "ts-node src/launch.ts",
"lint": "ts-standard src/**/*.ts",
"lint:fix": "ts-standard --fix src/**/*.ts",
"prebuild": "npm run clean && ts-standard --fix src/**/*.ts tests/**/*.ts",
"prepare": "npm run build && husky",
"prebuild": "pnpm run clean && ts-standard --fix src/**/*.ts tests/**/*.ts",
"prepare": "pnpm run build && husky",
"test": "vitest run",
"coverage": "vitest --coverage",
"snap": "vitest run --update"
Expand Down

0 comments on commit 0156edf

Please sign in to comment.