@powerlines/nx 0.11.253 → 0.11.255
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/base-executor.untyped.d.mts +1 -1
- package/dist/src/base/base-executor.untyped.d.ts +1 -1
- package/dist/src/base/index.d.mts +1 -1
- package/dist/src/base/index.js +1 -1
- package/dist/src/base/index.mjs +1 -1
- package/dist/src/{base-executor-C6v5AHYW.mjs → base-executor-C5zOSF8G.mjs} +14 -10
- package/dist/src/base-executor-C5zOSF8G.mjs.map +1 -0
- package/dist/src/base-executor-CDMeDnfo.d.mts.map +1 -1
- package/dist/src/{base-executor-Dw-fhsUi.mjs → base-executor-DkPqPuGO.mjs} +14 -10
- package/dist/src/base-executor-DkPqPuGO.mjs.map +1 -0
- package/dist/src/{base-executor-BWwpclQE.js → base-executor-DqLkQwd_.js} +13 -9
- package/dist/src/{base-executor-DpQbYOg0.js → base-executor-tq_hb0zU.js} +13 -9
- package/dist/src/base-executor.untyped-DBccuF6E.d.ts +7 -0
- package/dist/src/base-executor.untyped-DBccuF6E.d.ts.map +1 -0
- 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.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.mts +2 -2
- package/dist/src/generators/sync/untyped.d.mts +2 -2
- package/dist/src/index.d.mts +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/src/base-executor-C6v5AHYW.mjs.map +0 -1
- package/dist/src/base-executor-Dw-fhsUi.mjs.map +0 -1
- 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-executor.untyped-BgwzwrUY.d.mts +0 -7
- package/dist/src/base-executor.untyped-BgwzwrUY.d.mts.map +0 -1
|
@@ -84,7 +84,7 @@ let node_path = require("node:path");
|
|
|
84
84
|
require("unplugin");
|
|
85
85
|
|
|
86
86
|
//#region ../powerlines/package.json
|
|
87
|
-
var version = "0.40.
|
|
87
|
+
var version = "0.40.13";
|
|
88
88
|
|
|
89
89
|
//#endregion
|
|
90
90
|
//#region ../powerlines/src/typescript/ts-morph.ts
|
|
@@ -2019,7 +2019,7 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2019
2019
|
let path = id;
|
|
2020
2020
|
if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
|
|
2021
2021
|
if (options.skipAlias !== true) path = this.resolveAlias(path);
|
|
2022
|
-
if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
|
|
2022
|
+
if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !await this.isDirectory(path))) return path;
|
|
2023
2023
|
const resolverCacheKey = (0, __stryke_hash.murmurhash)({
|
|
2024
2024
|
path: this.#normalizeId(path),
|
|
2025
2025
|
importer,
|
|
@@ -2034,9 +2034,11 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2034
2034
|
if (!result) {
|
|
2035
2035
|
const paths = options.paths ?? [];
|
|
2036
2036
|
if (importer && !paths.includes(importer)) paths.push(importer);
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2037
|
+
if (!importer) {
|
|
2038
|
+
paths.push(this.#context.workspaceConfig.workspaceRoot);
|
|
2039
|
+
paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
|
|
2040
|
+
paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
|
|
2041
|
+
}
|
|
2040
2042
|
paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
|
|
2041
2043
|
for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
|
|
2042
2044
|
const { relativeKey, adapter } = this.#getStorage(combination);
|
|
@@ -2075,7 +2077,7 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2075
2077
|
let path = id;
|
|
2076
2078
|
if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
|
|
2077
2079
|
if (options.skipAlias !== true) path = this.resolveAlias(path);
|
|
2078
|
-
if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
|
|
2080
|
+
if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !this.isDirectorySync(path))) return path;
|
|
2079
2081
|
let result;
|
|
2080
2082
|
if (!this.#context.config.skipCache) {
|
|
2081
2083
|
result = this.resolverCache.get(this.#normalizeId(path));
|
|
@@ -2085,9 +2087,11 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2085
2087
|
if (!result) {
|
|
2086
2088
|
const paths = options.paths ?? [];
|
|
2087
2089
|
if (importer && !paths.includes(importer)) paths.push(importer);
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2090
|
+
if (!importer) {
|
|
2091
|
+
paths.push(this.#context.workspaceConfig.workspaceRoot);
|
|
2092
|
+
paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
|
|
2093
|
+
paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
|
|
2094
|
+
}
|
|
2091
2095
|
paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
|
|
2092
2096
|
for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
|
|
2093
2097
|
const { relativeKey, adapter } = this.#getStorage(combination);
|
|
@@ -84,7 +84,7 @@ let node_path = require("node:path");
|
|
|
84
84
|
require("unplugin");
|
|
85
85
|
|
|
86
86
|
//#region ../powerlines/package.json
|
|
87
|
-
var version = "0.40.
|
|
87
|
+
var version = "0.40.14";
|
|
88
88
|
|
|
89
89
|
//#endregion
|
|
90
90
|
//#region ../powerlines/src/typescript/ts-morph.ts
|
|
@@ -2019,7 +2019,7 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2019
2019
|
let path = id;
|
|
2020
2020
|
if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
|
|
2021
2021
|
if (options.skipAlias !== true) path = this.resolveAlias(path);
|
|
2022
|
-
if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
|
|
2022
|
+
if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !await this.isDirectory(path))) return path;
|
|
2023
2023
|
const resolverCacheKey = (0, __stryke_hash.murmurhash)({
|
|
2024
2024
|
path: this.#normalizeId(path),
|
|
2025
2025
|
importer,
|
|
@@ -2034,9 +2034,11 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2034
2034
|
if (!result) {
|
|
2035
2035
|
const paths = options.paths ?? [];
|
|
2036
2036
|
if (importer && !paths.includes(importer)) paths.push(importer);
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2037
|
+
if (!importer) {
|
|
2038
|
+
paths.push(this.#context.workspaceConfig.workspaceRoot);
|
|
2039
|
+
paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
|
|
2040
|
+
paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
|
|
2041
|
+
}
|
|
2040
2042
|
paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
|
|
2041
2043
|
for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
|
|
2042
2044
|
const { relativeKey, adapter } = this.#getStorage(combination);
|
|
@@ -2075,7 +2077,7 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2075
2077
|
let path = id;
|
|
2076
2078
|
if (path.includes("{") || path.includes("}")) path = replacePathTokens(this.#context, path);
|
|
2077
2079
|
if (options.skipAlias !== true) path = this.resolveAlias(path);
|
|
2078
|
-
if ((0, __stryke_path_is_type.isAbsolutePath)(path)) return path;
|
|
2080
|
+
if ((0, __stryke_path_is_type.isAbsolutePath)(path) && (!options.isFile || !this.isDirectorySync(path))) return path;
|
|
2079
2081
|
let result;
|
|
2080
2082
|
if (!this.#context.config.skipCache) {
|
|
2081
2083
|
result = this.resolverCache.get(this.#normalizeId(path));
|
|
@@ -2085,9 +2087,11 @@ var VirtualFileSystem = class VirtualFileSystem {
|
|
|
2085
2087
|
if (!result) {
|
|
2086
2088
|
const paths = options.paths ?? [];
|
|
2087
2089
|
if (importer && !paths.includes(importer)) paths.push(importer);
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2090
|
+
if (!importer) {
|
|
2091
|
+
paths.push(this.#context.workspaceConfig.workspaceRoot);
|
|
2092
|
+
paths.push((0, __stryke_path_append.appendPath)(this.#context.config.root, this.#context.workspaceConfig.workspaceRoot));
|
|
2093
|
+
paths.push((0, __stryke_path_append.appendPath)((0, __stryke_path_join.joinPaths)(this.#context.config.root, "src"), this.#context.workspaceConfig.workspaceRoot));
|
|
2094
|
+
}
|
|
2091
2095
|
paths.push(...Object.keys(this.#context.tsconfig?.options?.paths ?? {}).filter((tsconfigPath) => path.startsWith(tsconfigPath.replace(/\*$/, ""))).map((tsconfigPath) => this.#context.tsconfig?.options?.paths?.[tsconfigPath]).flat().filter(Boolean).map((tsconfigPath) => (0, __stryke_path_append.appendPath)(tsconfigPath, this.#context.workspaceConfig.workspaceRoot)));
|
|
2092
2096
|
for (const combination of (0, __stryke_fs_resolve.getResolutionCombinations)(path, { paths })) {
|
|
2093
2097
|
const { relativeKey, adapter } = this.#getStorage(combination);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-executor.untyped-DBccuF6E.d.ts","names":[],"sources":["../../src/base/base-executor.untyped.ts"],"sourcesContent":[],"mappings":""}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
const require_config = require('../../config-CGQhS8tm.js');
|
|
3
|
-
const require_base_executor = require('../../base-executor-
|
|
3
|
+
const require_base_executor = require('../../base-executor-tq_hb0zU.js');
|
|
4
4
|
let defu = require("defu");
|
|
5
5
|
defu = require_config.__toESM(defu);
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped2 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/build/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped2.SchemaDefinition;
|
|
5
5
|
export = _default;
|
|
6
6
|
//# sourceMappingURL=untyped.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
require('../../config-CGQhS8tm.js');
|
|
3
|
-
const require_base_executor = require('../../base-executor-
|
|
3
|
+
const require_base_executor = require('../../base-executor-tq_hb0zU.js');
|
|
4
4
|
|
|
5
5
|
//#region src/executors/clean/executor.ts
|
|
6
6
|
async function executorFn(context, api) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped1 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/clean/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped1.SchemaDefinition;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
7
7
|
//# sourceMappingURL=untyped.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped4 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/clean/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped4.SchemaDefinition;
|
|
5
5
|
export = _default;
|
|
6
6
|
//# sourceMappingURL=untyped.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
require('../../config-CGQhS8tm.js');
|
|
3
|
-
const require_base_executor = require('../../base-executor-
|
|
3
|
+
const require_base_executor = require('../../base-executor-tq_hb0zU.js');
|
|
4
4
|
|
|
5
5
|
//#region src/executors/docs/executor.ts
|
|
6
6
|
async function executorFn(context, api) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped2 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/docs/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped2.SchemaDefinition;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
7
7
|
//# sourceMappingURL=untyped.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
require('../../config-CGQhS8tm.js');
|
|
3
|
-
const require_base_executor = require('../../base-executor-
|
|
3
|
+
const require_base_executor = require('../../base-executor-tq_hb0zU.js');
|
|
4
4
|
|
|
5
5
|
//#region src/executors/lint/executor.ts
|
|
6
6
|
async function executorFn(context, api) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped3 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/lint/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped3.SchemaDefinition;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
7
7
|
//# sourceMappingURL=untyped.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped0 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/lint/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped0.SchemaDefinition;
|
|
5
5
|
export = _default;
|
|
6
6
|
//# sourceMappingURL=untyped.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
const require_config = require('../../config-CGQhS8tm.js');
|
|
3
|
-
const require_base_executor = require('../../base-executor-
|
|
3
|
+
const require_base_executor = require('../../base-executor-tq_hb0zU.js');
|
|
4
4
|
let defu = require("defu");
|
|
5
5
|
defu = require_config.__toESM(defu);
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped4 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/executors/prepare/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped4.SchemaDefinition;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
7
7
|
//# sourceMappingURL=untyped.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as untyped5 from "untyped";
|
|
2
2
|
|
|
3
3
|
//#region src/generators/sync/untyped.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: untyped5.SchemaDefinition;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
7
7
|
//# sourceMappingURL=untyped.d.mts.map
|
package/dist/src/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as withExecutor, t as PowerlinesExecutorContext } from "./base-executor-CDMeDnfo.mjs";
|
|
2
|
-
import "./base-executor.untyped-
|
|
2
|
+
import "./base-executor.untyped-imww7Gm9.mjs";
|
|
3
3
|
import "./index-LhFpnU-f.mjs";
|
|
4
4
|
import { t as CONFIG_INPUTS } from "./constants-ByputsG8.mjs";
|
|
5
5
|
import { t as NxPluginOptions } from "./plugin-DIj3oU64.mjs";
|
package/dist/src/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
require('./config-CGQhS8tm.js');
|
|
2
|
-
const require_base_executor = require('./base-executor-
|
|
2
|
+
const require_base_executor = require('./base-executor-tq_hb0zU.js');
|
|
3
3
|
require('./base-executor.untyped-Cz1Zw_02.js');
|
|
4
4
|
require('./base-B7jekb-W.js');
|
|
5
5
|
const require_constants = require('./constants-CKuImMYn.js');
|
package/dist/src/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.255",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"eslint-flat-config-utils": "^2.1.4",
|
|
197
197
|
"jsonc-eslint-parser": "^2.4.2",
|
|
198
198
|
"nx": "22.5.2",
|
|
199
|
-
"powerlines": "^0.40.
|
|
199
|
+
"powerlines": "^0.40.14",
|
|
200
200
|
"untyped": "^1.5.2"
|
|
201
201
|
},
|
|
202
202
|
"peerDependencies": { "nx": ">=22.5.0", "powerlines": ">=0.39.2" },
|
|
@@ -207,5 +207,5 @@
|
|
|
207
207
|
"publishConfig": { "access": "public" },
|
|
208
208
|
"executors": "./executors.json",
|
|
209
209
|
"generators": "./generators.json",
|
|
210
|
-
"gitHead": "
|
|
210
|
+
"gitHead": "b46efba9e26b5ffdad2143baf6079762363d8a27"
|
|
211
211
|
}
|