@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.
- 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-0AJy4tNT.mjs → base-executor-BbDmHR3V.mjs} +5 -4
- package/dist/src/{base-executor-0AJy4tNT.mjs.map → base-executor-BbDmHR3V.mjs.map} +1 -1
- package/dist/src/{base-executor-Beez8GRn.js → base-executor-CIYfwHce.js} +4 -3
- package/dist/src/{base-executor-Bo9fi0tA.js → base-executor-CjGWt_NE.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.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.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.ts +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.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/index.js +1 -1
- package/dist/src/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/src/base-executor.untyped-B24q82iI.d.ts +0 -7
- package/dist/src/base-executor.untyped-B24q82iI.d.ts.map +0 -1
package/dist/src/base/index.js
CHANGED
package/dist/src/base/index.mjs
CHANGED
|
@@ -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.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
|
|
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-BbDmHR3V.mjs.map
|