Skip to content

Commit

Permalink
Adapt npm rules to esbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
oleiade committed Sep 6, 2024
1 parent 34a286d commit f941ad9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
},
"engines": {},
"scripts": {
"webpack": "./node_modules/.bin/webpack",
"test": "npm run webpack && docker-compose down -v && docker-compose up --build -d && sleep 15 && k6 run -q tests/index.js",
"test:ci": "npm run webpack && k6 run -q tests/index.js",
"build": "node build.mjs",
"release": "NODE_ENV=production npm run build",
"test": "npm run build && docker-compose down -v && docker-compose up --build -d && sleep 15 && k6 run -q tests/index.js",
"test:ci": "npm run build && k6 run -q tests/index.js",
"lint": "npx eslint src tests examples"
},
"keywords": [
Expand Down

0 comments on commit f941ad9

Please sign in to comment.