Skip to content

Commit ecc183e

Browse files
committed
test
1 parent fb90da8 commit ecc183e

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

e2e/bundlers/project.json

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"executor": "nx:run-commands",
66
"options": {
77
"cwd": "{projectRoot}",
8-
"command": "rimraf entry && mkdir entry && node ./generate_entry_files.js"
8+
"command": "rimraf entry dist && mkdir entry dist && node ./generate_entry_files.js"
99
},
1010
"outputs": [
1111
"{projectRoot}/entry"
@@ -29,8 +29,6 @@
2929
"cwd": "{projectRoot}",
3030
"command": "webpack --config ./webpack.config.cjs.js"
3131
},
32-
"outputs": ["{projectRoot}/dist"],
33-
"cache": false,
3432
"dependsOn": ["build"]
3533
},
3634
"test--webpack": {
@@ -39,8 +37,6 @@
3937
"cwd": "{projectRoot}",
4038
"command": "webpack --config ./webpack.config.js"
4139
},
42-
"outputs": ["{projectRoot}/dist"],
43-
"cache": false,
4440
"dependsOn": ["build"]
4541
},
4642
"test--rollup": {
@@ -49,28 +45,22 @@
4945
"cwd": "{projectRoot}",
5046
"command": "rollup -c"
5147
},
52-
"outputs": ["{projectRoot}/dist"],
53-
"cache": false,
5448
"dependsOn": ["build"]
5549
},
5650
"test--parcel": {
5751
"executor": "nx:run-commands",
5852
"options": {
5953
"cwd": "{projectRoot}",
60-
"command": "mkdir -p ./dist/dist_parsel && parcel build ./entry/modules_esm.js --no-cache --dist-dir ./dist/dist_parsel"
54+
"command": "parcel build ./entry/modules_esm.js --no-cache --dist-dir ./dist/dist_parsel"
6155
},
62-
"outputs": ["{projectRoot}/dist"],
63-
"cache": false,
6456
"dependsOn": ["build"]
6557
},
6658
"test--browserify-cjs": {
6759
"executor": "nx:run-commands",
6860
"options": {
6961
"cwd": "{projectRoot}",
70-
"command": "mkdir -p ./dist/dist_browserify && cross-env NODE_PATH=./node_modules:./node_modules/globalize/dist browserify ./entry/modules_cjs.js -o ./dist/dist_browserify/bundle_cjs.js"
62+
"command": "cross-env TMPDIR=./dist NODE_PATH=./node_modules:./node_modules/globalize/dist browserify ./entry/modules_cjs.js -o ./dist/dist_browserify/bundle_cjs.js"
7163
},
72-
"outputs": ["{projectRoot}/dist"],
73-
"cache": false,
7464
"dependsOn": ["build"]
7565
},
7666
"test--vite": {
@@ -79,8 +69,6 @@
7969
"cwd": "{projectRoot}",
8070
"command": "vite build"
8171
},
82-
"outputs": ["{projectRoot}/dist"],
83-
"cache": false,
8472
"dependsOn": ["build"]
8573
}
8674
}

0 commit comments

Comments
 (0)