Skip to content

Commit

Permalink
Remove pre-* scripts
Browse files Browse the repository at this point in the history
To make it more obvious what's happening when running commands.
  • Loading branch information
ahuth committed Sep 23, 2024
1 parent 6944d14 commit 14af0b0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,17 @@
"demo"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf ./build",
"demo": "npm run build && npm run --workspace=demo storybook:axe --",
"demo:axeOnly": "npm run build && npm run --workspace=demo storybook:axeOnly --",
"demo:build": "npm run --workspace=demo build-storybook",
"demo:eds": "axe-storybook --storybook-url https://chanzuckerberg.github.io/edu-design-system",
"demo:storybook": "npm --workspace=demo run storybook",
"lint": "eslint .",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"pretest:integration": "npm run build && npm run demo:build",
"test": "vitest run --dir src",
"test:integration": "npm run test:integrationOnly",
"test:integration": "npm run build && npm run demo:build && npm run test:integrationOnly",
"test:integrationOnly": "vitest run --dir tests/integration --poolOptions.threads.singleThread",
"types": "tsc --noEmit",
"validate": "npm run lint && npm run types && npm run test"
Expand Down

0 comments on commit 14af0b0

Please sign in to comment.