Adds single package-for-smoketest step

This commit is contained in:
Henning Dieterichs 2025-10-08 21:21:05 +02:00 committed by Henning Dieterichs
parent 3b2be8eda6
commit e979ae38e3
2 changed files with 2 additions and 7 deletions

View file

@ -74,13 +74,7 @@ jobs:
run: npm run compile --prefix webpack-plugin run: npm run compile --prefix webpack-plugin
- name: Package using webpack plugin - name: Package using webpack plugin
run: npm run package-for-smoketest-webpack run: npm run package-for-smoketest
- name: Package using esbuild
run: npm run package-for-smoketest-esbuild
- name: Package using vite
run: npm run package-for-smoketest-vite
# - name: Package using parcel # - name: Package using parcel
# run: npm run package-for-smoketest-parcel --prefix test/smoke/parcel # run: npm run package-for-smoketest-parcel --prefix test/smoke/parcel

View file

@ -14,6 +14,7 @@
"prettier": "prettier --write .", "prettier": "prettier --write .",
"pretty-quick": "pretty-quick --staged", "pretty-quick": "pretty-quick --staged",
"simpleserver": "ts-node ./build/simpleserver", "simpleserver": "ts-node ./build/simpleserver",
"package-for-smoketest": "npm run package-for-smoketest-webpack && npm run package-for-smoketest-esbuild && npm run package-for-smoketest-vite",
"package-for-smoketest-webpack": "ts-node ./test/smoke/package-webpack", "package-for-smoketest-webpack": "ts-node ./test/smoke/package-webpack",
"package-for-smoketest-webpack-cross-origin": "ts-node ./test/smoke/package-webpack --cross-origin", "package-for-smoketest-webpack-cross-origin": "ts-node ./test/smoke/package-webpack --cross-origin",
"package-for-smoketest-esbuild": "ts-node ./test/smoke/package-esbuild", "package-for-smoketest-esbuild": "ts-node ./test/smoke/package-esbuild",