File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed
Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change 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"
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" : {
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" : {
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" : {
7969 "cwd" : " {projectRoot}" ,
8070 "command" : " vite build"
8171 },
82- "outputs" : [" {projectRoot}/dist" ],
83- "cache" : false ,
8472 "dependsOn" : [" build" ]
8573 }
8674 }
You can’t perform that action at this time.
0 commit comments