Skip to content

Commit

Permalink
fix: build break in web deployment pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Jan 5, 2024
1 parent dc6d5d7 commit 851090a
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 @@ -45,7 +45,7 @@
"lint:fix": "eslint --quiet --fix src test",
"prepare": "husky install",
"_serveTest": "http-server . -p 5000 -c-1",
"_zipTestFiles": "gulp zipTestFiles",
"zipTestFiles": "gulp zipTestFiles",
"test": "echo please see `Running and debugging tests` section in readme.md",
"testIntegHelp": "echo By default this command only runs unit tests.To Run integration tests, please see `Running and debugging tests` section in readme.md",
"testChromium": "npm run testIntegHelp && npx playwright test --project=chromium",
Expand All @@ -61,8 +61,8 @@
"_buildonlyDebug": "gulp buildDebug",
"_vulnerabilityCheck": "echo Scanning for vulnarabilities && npm audit --prod --audit-level=critical",
"_create-src-node-pkg-lock": "cd src-node && npm i --package-lock-only && cd ..",
"build": "npm run _create-src-node-pkg-lock && npm run _buildonly && npm run createJSDocs && npm run _zipTestFiles && npm run lint && npm run _vulnerabilityCheck",
"build:debug": "npm run _create-src-node-pkg-lock && npm run _buildonlyDebug && npm run createJSDocs && npm run _zipTestFiles && npm run lint && npm run _vulnerabilityCheck",
"build": "npm run _create-src-node-pkg-lock && npm run _buildonly && npm run createJSDocs && npm run zipTestFiles && npm run lint && npm run _vulnerabilityCheck",
"build:debug": "npm run _create-src-node-pkg-lock && npm run _buildonlyDebug && npm run createJSDocs && npm run zipTestFiles && npm run lint && npm run _vulnerabilityCheck",
"clean": "gulp clean && gulp reset",
"release:dev": "gulp releaseDev",
"release:staging": "gulp releaseStaging",
Expand Down

0 comments on commit 851090a

Please sign in to comment.