@nx/js 18.2.3 → 18.3.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/js",
3
- "version": "18.2.3",
3
+ "version": "18.3.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
6
6
  "repository": {
@@ -57,9 +57,9 @@
57
57
  "semver": "^7.5.3",
58
58
  "source-map-support": "0.5.19",
59
59
  "tslib": "^2.3.0",
60
- "@nx/devkit": "18.2.3",
61
- "@nx/workspace": "18.2.3",
62
- "@nrwl/js": "18.2.3"
60
+ "@nx/devkit": "18.3.0-beta.0",
61
+ "@nx/workspace": "18.3.0-beta.0",
62
+ "@nrwl/js": "18.3.0-beta.0"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "verdaccio": "^5.0.4"
@@ -112,14 +112,8 @@ async function* nodeExecutor(options, context) {
112
112
  if (options.watch && !task.killed) {
113
113
  devkit_1.logger.info(`NX Process exited with code ${code}, waiting for changes to restart...`);
114
114
  }
115
- if (!options.watch) {
116
- if (code !== 0) {
117
- error(new Error(`Process exited with code ${code}`));
118
- }
119
- else {
120
- done();
121
- }
122
- }
115
+ if (!options.watch)
116
+ done();
123
117
  resolve();
124
118
  });
125
119
  next({ success: true, options: buildOptions });