@powerlines/nx 0.11.265 → 0.11.267
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/dist/src/base/base-executor.js +1 -1
- package/dist/src/base/base-executor.mjs +1 -1
- package/dist/src/base/index.js +1 -1
- package/dist/src/base/index.mjs +1 -1
- package/dist/src/{base-executor-DS_oP1O6.js → base-executor-BY0qdmfF.js} +4 -3
- package/dist/src/{base-executor-BFj_3kyS.mjs → base-executor-CC8rBACl.mjs} +5 -4
- package/dist/src/{base-executor-BFj_3kyS.mjs.map → base-executor-CC8rBACl.mjs.map} +1 -1
- package/dist/src/{base-executor-Beez8GRn.js → base-executor-CIYfwHce.js} +4 -3
- package/dist/src/{base-executor-CufDCf4m.mjs → base-executor-Dc-dNv2v.mjs} +5 -4
- package/dist/src/{base-executor-CufDCf4m.mjs.map → base-executor-Dc-dNv2v.mjs.map} +1 -1
- package/dist/src/executors/build/executor.js +1 -1
- package/dist/src/executors/build/executor.mjs +1 -1
- package/dist/src/executors/build/untyped.d.mts +2 -2
- package/dist/src/executors/build/untyped.d.ts +2 -2
- package/dist/src/executors/clean/executor.js +1 -1
- package/dist/src/executors/clean/executor.mjs +1 -1
- package/dist/src/executors/clean/untyped.d.mts +2 -2
- package/dist/src/executors/clean/untyped.d.ts +2 -2
- package/dist/src/executors/docs/executor.js +1 -1
- package/dist/src/executors/docs/executor.mjs +1 -1
- package/dist/src/executors/docs/untyped.d.mts +2 -2
- package/dist/src/executors/lint/executor.js +1 -1
- package/dist/src/executors/lint/executor.mjs +1 -1
- package/dist/src/executors/lint/untyped.d.mts +2 -2
- package/dist/src/executors/lint/untyped.d.ts +2 -2
- package/dist/src/executors/prepare/executor.js +1 -1
- package/dist/src/executors/prepare/executor.mjs +1 -1
- package/dist/src/executors/prepare/untyped.d.ts +2 -2
- package/dist/src/generators/sync/untyped.d.mts +2 -2
- package/dist/src/generators/sync/untyped.d.ts +2 -2
- package/dist/src/index.js +1 -1
- package/dist/src/index.mjs +1 -1
- package/package.json +3 -3
package/dist/src/base/index.js
CHANGED
package/dist/src/base/index.mjs
CHANGED
|
@@ -85,7 +85,7 @@ let node_path = require("node:path");
|
|
|
85
85
|
require("unplugin");
|
|
86
86
|
|
|
87
87
|
//#region ../powerlines/package.json
|
|
88
|
-
var version = "0.41.
|
|
88
|
+
var version = "0.41.4";
|
|
89
89
|
|
|
90
90
|
//#endregion
|
|
91
91
|
//#region ../powerlines/src/typescript/ts-morph.ts
|
|
@@ -3335,10 +3335,11 @@ var PowerlinesContext = class PowerlinesContext {
|
|
|
3335
3335
|
...options
|
|
3336
3336
|
});
|
|
3337
3337
|
if (!result) return;
|
|
3338
|
+
const external = !(0, bundle_require.match)(moduleId, this.config.resolve.noExternal) && ((0, bundle_require.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));
|
|
3338
3339
|
return {
|
|
3339
3340
|
id: result,
|
|
3340
|
-
external
|
|
3341
|
-
virtual:
|
|
3341
|
+
external,
|
|
3342
|
+
virtual: !external
|
|
3342
3343
|
};
|
|
3343
3344
|
}
|
|
3344
3345
|
if (this.config.resolve.skipNodeModulesBundle) {
|
|
@@ -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.
|
|
82
|
+
var version = "0.41.4";
|
|
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
|
|
3335
|
-
virtual:
|
|
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-
|
|
4863
|
+
//# sourceMappingURL=base-executor-CC8rBACl.mjs.map
|