@powerlines/nx 0.11.264 → 0.11.266

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.
Files changed (30) hide show
  1. package/dist/src/base/base-executor.js +1 -1
  2. package/dist/src/base/base-executor.mjs +1 -1
  3. package/dist/src/base/index.js +1 -1
  4. package/dist/src/base/index.mjs +1 -1
  5. package/dist/src/{base-executor-0AJy4tNT.mjs → base-executor-BbDmHR3V.mjs} +5 -4
  6. package/dist/src/{base-executor-0AJy4tNT.mjs.map → base-executor-BbDmHR3V.mjs.map} +1 -1
  7. package/dist/src/{base-executor-Beez8GRn.js → base-executor-CIYfwHce.js} +4 -3
  8. package/dist/src/{base-executor-Bo9fi0tA.js → base-executor-CjGWt_NE.js} +4 -3
  9. package/dist/src/{base-executor-CufDCf4m.mjs → base-executor-Dc-dNv2v.mjs} +5 -4
  10. package/dist/src/{base-executor-CufDCf4m.mjs.map → base-executor-Dc-dNv2v.mjs.map} +1 -1
  11. package/dist/src/executors/build/executor.js +1 -1
  12. package/dist/src/executors/build/executor.mjs +1 -1
  13. package/dist/src/executors/build/untyped.d.ts +2 -2
  14. package/dist/src/executors/clean/executor.js +1 -1
  15. package/dist/src/executors/clean/executor.mjs +1 -1
  16. package/dist/src/executors/clean/untyped.d.ts +2 -2
  17. package/dist/src/executors/docs/executor.js +1 -1
  18. package/dist/src/executors/docs/executor.mjs +1 -1
  19. package/dist/src/executors/docs/untyped.d.ts +2 -2
  20. package/dist/src/executors/lint/executor.js +1 -1
  21. package/dist/src/executors/lint/executor.mjs +1 -1
  22. package/dist/src/executors/lint/untyped.d.ts +2 -2
  23. package/dist/src/executors/prepare/executor.js +1 -1
  24. package/dist/src/executors/prepare/executor.mjs +1 -1
  25. package/dist/src/executors/prepare/untyped.d.ts +2 -2
  26. package/dist/src/index.js +1 -1
  27. package/dist/src/index.mjs +1 -1
  28. package/package.json +3 -3
  29. package/dist/src/base-executor.untyped-B24q82iI.d.ts +0 -7
  30. package/dist/src/base-executor.untyped-B24q82iI.d.ts.map +0 -1
@@ -1,4 +1,4 @@
1
1
  require('../config-CGQhS8tm.js');
2
- const require_base_executor = require('../base-executor-Beez8GRn.js');
2
+ const require_base_executor = require('../base-executor-CIYfwHce.js');
3
3
 
4
4
  exports.withExecutor = require_base_executor.withExecutor;
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../base-executor-CufDCf4m.mjs";
1
+ import { t as withExecutor } from "../base-executor-Dc-dNv2v.mjs";
2
2
  import "../config-LoR-NIJg.mjs";
3
3
 
4
4
  export { withExecutor };
@@ -1,5 +1,5 @@
1
1
  require('../config-CGQhS8tm.js');
2
- const require_base_executor = require('../base-executor-Beez8GRn.js');
2
+ const require_base_executor = require('../base-executor-CIYfwHce.js');
3
3
  require('../base-executor.untyped-Cz1Zw_02.js');
4
4
  require('../base-B7jekb-W.js');
5
5
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../base-executor-CufDCf4m.mjs";
1
+ import { t as withExecutor } from "../base-executor-Dc-dNv2v.mjs";
2
2
  import "../config-LoR-NIJg.mjs";
3
3
  import "../base-executor.untyped-C1pQETnQ.mjs";
4
4
  import "../base-BRSa-clf.mjs";
@@ -79,7 +79,7 @@ import { resolve as resolve$1 } from "node:path";
79
79
  import "unplugin";
80
80
 
81
81
  //#region ../powerlines/package.json
82
- var version = "0.41.0";
82
+ var version = "0.41.2";
83
83
 
84
84
  //#endregion
85
85
  //#region ../powerlines/src/typescript/ts-morph.ts
@@ -3329,10 +3329,11 @@ var PowerlinesContext = class PowerlinesContext {
3329
3329
  ...options
3330
3330
  });
3331
3331
  if (!result) return;
3332
+ const external = !match(moduleId, this.config.resolve.noExternal) && (match(moduleId, this.config.resolve.external) || moduleId.startsWith("node:") || this.fs.isVirtual(moduleId) && this.config.projectType !== "application" || this.config.resolve.skipNodeModulesBundle && !/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId));
3332
3333
  return {
3333
3334
  id: result,
3334
- external: !match(moduleId, this.config.resolve.noExternal) && (match(moduleId, this.config.resolve.external) || moduleId.startsWith("node:") || this.fs.isVirtual(moduleId) && this.config.projectType !== "application" || this.config.resolve.skipNodeModulesBundle && !/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(moduleId)),
3335
- virtual: true
3335
+ external,
3336
+ virtual: !external
3336
3337
  };
3337
3338
  }
3338
3339
  if (this.config.resolve.skipNodeModulesBundle) {
@@ -4859,4 +4860,4 @@ ${error.stack}` : "Unknown error"}`);
4859
4860
 
4860
4861
  //#endregion
4861
4862
  export { withExecutor as t };
4862
- //# sourceMappingURL=base-executor-0AJy4tNT.mjs.map
4863
+ //# sourceMappingURL=base-executor-BbDmHR3V.mjs.map