Skip to content

Commit

Permalink
add playwrights install to build
Browse files Browse the repository at this point in the history
  • Loading branch information
alinayh committed Sep 21, 2023
1 parent 145df87 commit 32b45da
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 @@ -19,14 +19,14 @@
"THIRD-PARTY-NOTICES"
],
"scripts": {
"build": "rm -rf lib/** && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && npm run format-check && npm run api-extractor && npm run generate-docs && npm run generate-notices && vite build",
"build": "rm -rf lib/** && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && npm run format-check && npm run api-extractor && npm run generate-docs && npm run generate-notices && npx playwright install --with-deps && vite build",
"prepare": "husky install",
"format-check": "prettier --check . && eslint .",
"format-fix": "prettier --write . && eslint . --fix",
"api-extractor": "api-extractor run --local --verbose",
"generate-docs": "api-documenter markdown --input-folder temp --output-folder docs && rm -rf temp",
"prepublishOnly": "npm run build",
"test": "jest && playwright install --with-deps && playwright test",
"test": "jest && playwright test",
"dev": "tsc -p tsconfig.esm.json --watch",
"generate-notices": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES --overwrite"
},
Expand Down

0 comments on commit 32b45da

Please sign in to comment.