We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f904ff commit 06be4c9Copy full SHA for 06be4c9
1 file changed
e2e/bundlers/project.json
@@ -47,13 +47,21 @@
47
},
48
"dependsOn": ["build"]
49
50
+ "build-parcel-watcher": {
51
+ "executor": "nx:run-commands",
52
+ "options": {
53
+ "cwd": "{projectRoot}",
54
+ "command": "cross-env npm_config_build_from_source=true pnpm rebuild --recursive @parcel/watcher"
55
+ },
56
+ "dependsOn": ["build"]
57
58
"test--parcel": {
59
"executor": "nx:run-commands",
60
"options": {
61
"cwd": "{projectRoot}",
62
"command": "parcel build ./entry/modules_esm.js --no-cache --dist-dir ./dist/dist_parsel"
63
- "dependsOn": ["build"]
64
+ "dependsOn": ["build-parcel-watcher"]
65
66
"test--browserify-cjs": {
67
@@ -72,4 +80,4 @@
72
80
73
81
}
74
82
75
-}
83
+}
0 commit comments