@onecx/nx-migration-utils 6.0.0-rc.18 → 6.0.0-rc.20
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 +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/lib/angular/replacement-in-files.utils.d.ts +1 -1
- package/src/lib/angular/replacement-in-files.utils.js +6 -1
- package/src/lib/angular/replacement-in-files.utils.js.map +1 -1
- package/src/lib/utils/modification/remove-import-specifier.utils.d.ts +9 -0
- package/src/lib/utils/modification/remove-import-specifier.utils.js +33 -0
- package/src/lib/utils/modification/remove-import-specifier.utils.js.map +1 -0
- package/src/lib/utils/patterns.utils.d.ts +7 -0
- package/src/lib/utils/patterns.utils.js +10 -0
- package/src/lib/utils/patterns.utils.js.map +1 -1
- package/src/lib/utils/print-warnings.utils.js +1 -5
- package/src/lib/utils/print-warnings.utils.js.map +1 -1
- package/src/lib/utils/validation/is-import-in-file-content.utils.d.ts +8 -0
- package/src/lib/utils/validation/is-import-in-file-content.utils.js +18 -0
- package/src/lib/utils/validation/is-import-in-file-content.utils.js.map +1 -0
- package/src/test-setup.d.ts +1 -0
- package/src/test-setup.js +6 -0
- package/src/test-setup.js.map +1 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -12,7 +12,9 @@ export * from './lib/utils/modification/remove-json-references.utils';
|
|
|
12
12
|
export * from './lib/utils/modification/add-new-import.utils';
|
|
13
13
|
export * from './lib/utils/modification/add-to-first-import.utils';
|
|
14
14
|
export * from './lib/utils/modification/replace-tag-in-html.utils';
|
|
15
|
+
export * from './lib/utils/modification/remove-import-specifier.utils';
|
|
15
16
|
export * from './lib/utils/validation/is-file-style-sheet.utils';
|
|
16
17
|
export * from './lib/utils/validation/has-html-tag.utils';
|
|
17
18
|
export * from './lib/utils/validation/is-import-in-content.utils';
|
|
18
19
|
export * from './lib/utils/validation/is-namespace-import-in-content.utils';
|
|
20
|
+
export * from './lib/utils/validation/is-import-in-file-content.utils';
|
package/src/index.js
CHANGED
|
@@ -16,8 +16,10 @@ tslib_1.__exportStar(require("./lib/utils/modification/remove-json-references.ut
|
|
|
16
16
|
tslib_1.__exportStar(require("./lib/utils/modification/add-new-import.utils"), exports);
|
|
17
17
|
tslib_1.__exportStar(require("./lib/utils/modification/add-to-first-import.utils"), exports);
|
|
18
18
|
tslib_1.__exportStar(require("./lib/utils/modification/replace-tag-in-html.utils"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./lib/utils/modification/remove-import-specifier.utils"), exports);
|
|
19
20
|
tslib_1.__exportStar(require("./lib/utils/validation/is-file-style-sheet.utils"), exports);
|
|
20
21
|
tslib_1.__exportStar(require("./lib/utils/validation/has-html-tag.utils"), exports);
|
|
21
22
|
tslib_1.__exportStar(require("./lib/utils/validation/is-import-in-content.utils"), exports);
|
|
22
23
|
tslib_1.__exportStar(require("./lib/utils/validation/is-namespace-import-in-content.utils"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./lib/utils/validation/is-import-in-file-content.utils"), exports);
|
|
23
25
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/nx-migration-utils/src/index.ts"],"names":[],"mappings":";;;AAAA,qEAAqE;AACrE,mGAAwE;AAExE,yFAA8D;AAC9D,8EAAmD;AACnD,2EAAgD;AAChD,6EAAkD;AAClD,6EAAkD;AAElD,uGAA4E;AAE5E,2FAAgE;AAChE,6FAAkE;AAClE,4FAAiE;AACjE,gGAAqE;AACrE,wFAA6D;AAC7D,6FAAkE;AAClE,6FAAkE;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/nx-migration-utils/src/index.ts"],"names":[],"mappings":";;;AAAA,qEAAqE;AACrE,mGAAwE;AAExE,yFAA8D;AAC9D,8EAAmD;AACnD,2EAAgD;AAChD,6EAAkD;AAClD,6EAAkD;AAElD,uGAA4E;AAE5E,2FAAgE;AAChE,6FAAkE;AAClE,4FAAiE;AACjE,gGAAqE;AACrE,wFAA6D;AAC7D,6FAAkE;AAClE,6FAAkE;AAClE,iGAAsE;AAGtE,2FAAgE;AAChE,oFAAyD;AACzD,4FAAiE;AACjE,sGAA2E;AAC3E,iGAAsE"}
|
|
@@ -14,4 +14,4 @@ export declare function replaceInFile(tree: Tree, filePath: string, queryStr: st
|
|
|
14
14
|
* @param queryStr - A tsquery selector string used to identify nodes for replacement.
|
|
15
15
|
* @param replacement - The replacement string. If empty, trailing commas and empty array slots are cleaned up.
|
|
16
16
|
*/
|
|
17
|
-
export declare function replaceInFiles(tree: Tree, directoryPath: string, queryStr: string, replacement: string): void;
|
|
17
|
+
export declare function replaceInFiles(tree: Tree, directoryPath: string, queryStr: string, replacement: string, filterQuery?: string): void;
|
|
@@ -37,10 +37,15 @@ function replaceInFile(tree, filePath, queryStr, replacement) {
|
|
|
37
37
|
* @param queryStr - A tsquery selector string used to identify nodes for replacement.
|
|
38
38
|
* @param replacement - The replacement string. If empty, trailing commas and empty array slots are cleaned up.
|
|
39
39
|
*/
|
|
40
|
-
function replaceInFiles(tree, directoryPath, queryStr, replacement) {
|
|
40
|
+
function replaceInFiles(tree, directoryPath, queryStr, replacement, filterQuery) {
|
|
41
41
|
(0, devkit_1.visitNotIgnoredFiles)(tree, directoryPath, (filePath) => {
|
|
42
42
|
if (!filePath.endsWith('.ts'))
|
|
43
43
|
return;
|
|
44
|
+
const fileContent = tree.read(filePath, 'utf-8');
|
|
45
|
+
if (!fileContent)
|
|
46
|
+
return;
|
|
47
|
+
if (filterQuery && !(0, typescript_files_utils_1.fileMatchesQuery)(fileContent, filterQuery))
|
|
48
|
+
return;
|
|
44
49
|
replaceInFile(tree, filePath, queryStr, replacement);
|
|
45
50
|
});
|
|
46
51
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replacement-in-files.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/angular/replacement-in-files.utils.ts"],"names":[],"mappings":";;AAYA,sCAgBC;AASD,
|
|
1
|
+
{"version":3,"file":"replacement-in-files.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/angular/replacement-in-files.utils.ts"],"names":[],"mappings":";;AAYA,sCAgBC;AASD,wCAWC;AAhDD,uCAAuD;AACvD,uDAAmD;AACnD,2CAAuC;AACvC,4EAA8F;AAE9F;;;;;;GAMG;AACH,SAAgB,aAAa,CAAC,IAAU,EAAE,QAAgB,EAAE,QAAgB,EAAE,WAAmB;IAC/F,IAAI,CAAC;QACH,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;QAChD,IAAI,CAAC,WAAW;YAAE,OAAM;QAExB,IAAI,cAAc,GAAG,IAAA,iBAAO,EAAC,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,CAAC,WAAW,EAAE,uBAAU,CAAC,EAAE,CAAC,CAAA;QACrF,IAAI,WAAW,KAAK,EAAE,EAAE,CAAC;YACvB,cAAc,GAAG,IAAA,mDAA0B,EAAC,cAAc,CAAC,CAAA;QAC7D,CAAC;QAED,IAAI,cAAc,KAAK,WAAW,EAAE,CAAC;YACnC,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAA;QACtC,CAAC;IACH,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,oCAAoC,QAAQ,IAAI,EAAE,KAAK,CAAC,CAAA;IACxE,CAAC;AACH,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,cAAc,CAAC,IAAU,EAAE,aAAqB,EAAE,QAAgB,EAAE,WAAmB,EAAE,WAAoB;IAC3H,IAAA,6BAAoB,EAAC,IAAI,EAAE,aAAa,EAAE,CAAC,QAAQ,EAAE,EAAE;QACrD,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC;YAAE,OAAM;QAErC,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;QAChD,IAAI,CAAC,WAAW;YAAE,OAAM;QAExB,IAAI,WAAW,IAAI,CAAC,IAAA,yCAAgB,EAAC,WAAW,EAAE,WAAW,CAAC;YAAE,OAAM;QAEtE,aAAa,CAAC,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,CAAC,CAAA;IACtD,CAAC,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Tree } from "@nx/devkit";
|
|
2
|
+
/**
|
|
3
|
+
* Removes a named import from a specific file and module, and deletes the import statement if it becomes empty (AST-based).
|
|
4
|
+
* @param tree - The Nx virtual file system tree.
|
|
5
|
+
* @param filePath - Path to the TypeScript file to update.
|
|
6
|
+
* @param importPath - The module from which to remove the import.
|
|
7
|
+
* @param specifier - The named import to remove.
|
|
8
|
+
*/
|
|
9
|
+
export declare function removeImportSpecifierFromImport(tree: Tree, filePath: string, importPath: string, specifier: string): void;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.removeImportSpecifierFromImport = removeImportSpecifierFromImport;
|
|
4
|
+
const tsquery_1 = require("@phenomnomnominal/tsquery");
|
|
5
|
+
const typescript_1 = require("typescript");
|
|
6
|
+
/**
|
|
7
|
+
* Removes a named import from a specific file and module, and deletes the import statement if it becomes empty (AST-based).
|
|
8
|
+
* @param tree - The Nx virtual file system tree.
|
|
9
|
+
* @param filePath - Path to the TypeScript file to update.
|
|
10
|
+
* @param importPath - The module from which to remove the import.
|
|
11
|
+
* @param specifier - The named import to remove.
|
|
12
|
+
*/
|
|
13
|
+
function removeImportSpecifierFromImport(tree, filePath, importPath, specifier) {
|
|
14
|
+
const fileContent = tree.read(filePath, 'utf-8');
|
|
15
|
+
if (!fileContent)
|
|
16
|
+
return;
|
|
17
|
+
// Remove only the ImportSpecifier for the given specifier from the given importPath
|
|
18
|
+
let updated = (0, tsquery_1.replace)(fileContent, `ImportDeclaration:has(StringLiteral[value="${importPath}"]) ImportSpecifier:has(Identifier[name="${specifier}"])`, () => '', tsquery_1.ScriptKind.TS);
|
|
19
|
+
// AST: Remove the entire import if it is now empty
|
|
20
|
+
const astSource = (0, tsquery_1.ast)(updated);
|
|
21
|
+
const importDecls = (0, tsquery_1.query)(astSource, `ImportDeclaration:has(StringLiteral[value="${importPath}"])`);
|
|
22
|
+
for (const decl of importDecls) {
|
|
23
|
+
const importDecl = decl;
|
|
24
|
+
const namedBindings = importDecl.importClause?.namedBindings;
|
|
25
|
+
if (namedBindings && (0, typescript_1.isNamedImports)(namedBindings) && namedBindings.elements.length === 0) {
|
|
26
|
+
updated = (0, tsquery_1.replace)(updated, `ImportDeclaration:has(StringLiteral[value="${importPath}"])`, () => '', tsquery_1.ScriptKind.TS);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
if (updated !== fileContent) {
|
|
30
|
+
tree.write(filePath, updated);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=remove-import-specifier.utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-import-specifier.utils.js","sourceRoot":"","sources":["../../../../../../../libs/nx-migration-utils/src/lib/utils/modification/remove-import-specifier.utils.ts"],"names":[],"mappings":";;AAWA,0EA+BC;AAzCD,uDAA4E;AAC5E,2CAA+D;AAE/D;;;;;;GAMG;AACH,SAAgB,+BAA+B,CAAC,IAAU,EAAE,QAAgB,EAAE,UAAkB,EAAE,SAAiB;IACjH,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IACjD,IAAI,CAAC,WAAW;QAAE,OAAO;IAEzB,oFAAoF;IACpF,IAAI,OAAO,GAAG,IAAA,iBAAO,EACnB,WAAW,EACX,8CAA8C,UAAU,4CAA4C,SAAS,KAAK,EAClH,GAAG,EAAE,CAAC,EAAE,EACR,oBAAU,CAAC,EAAE,CACd,CAAC;IAEF,mDAAmD;IACnD,MAAM,SAAS,GAAG,IAAA,aAAG,EAAC,OAAO,CAAC,CAAC;IAC/B,MAAM,WAAW,GAAG,IAAA,eAAK,EAAC,SAAS,EAAE,8CAA8C,UAAU,KAAK,CAAC,CAAC;IACpG,KAAK,MAAM,IAAI,IAAI,WAAW,EAAE,CAAC;QACjC,MAAM,UAAU,GAAG,IAAyB,CAAC;QAC7C,MAAM,aAAa,GAAG,UAAU,CAAC,YAAY,EAAE,aAAa,CAAC;QAC7D,IAAI,aAAa,IAAI,IAAA,2BAAc,EAAC,aAAa,CAAC,IAAI,aAAa,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC1F,OAAO,GAAG,IAAA,iBAAO,EACf,OAAO,EACP,8CAA8C,UAAU,KAAK,EAC7D,GAAG,EAAE,CAAC,EAAE,EACR,oBAAU,CAAC,EAAE,CACd,CAAC;QACJ,CAAC;IACH,CAAC;IAEC,IAAI,OAAO,KAAK,WAAW,EAAE,CAAC;QAC5B,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IAChC,CAAC;AACH,CAAC"}
|
|
@@ -22,3 +22,10 @@ export declare function importNamespacePattern(importPath: string): string;
|
|
|
22
22
|
* @returns {string} ast query pattern
|
|
23
23
|
*/
|
|
24
24
|
export declare function importNamedImportsPattern(importPath: string): string;
|
|
25
|
+
/**
|
|
26
|
+
* Creates a pattern to look for import specifier.
|
|
27
|
+
* @param importPath - import path to look for
|
|
28
|
+
* @param specifier - specifier to look for, e.g., "MyClass"
|
|
29
|
+
* @returns {string} ast query pattern
|
|
30
|
+
*/
|
|
31
|
+
export declare function importSpecifierPattern(importPath: string, specifier: string): string;
|
|
@@ -5,6 +5,7 @@ exports.variableContainingIdentifierPattern = variableContainingIdentifierPatter
|
|
|
5
5
|
exports.importPattern = importPattern;
|
|
6
6
|
exports.importNamespacePattern = importNamespacePattern;
|
|
7
7
|
exports.importNamedImportsPattern = importNamedImportsPattern;
|
|
8
|
+
exports.importSpecifierPattern = importSpecifierPattern;
|
|
8
9
|
/**
|
|
9
10
|
* Creates a pattern to look for a variable containing the identifier
|
|
10
11
|
* @param identifierName - identifier to look for
|
|
@@ -38,4 +39,13 @@ function importNamespacePattern(importPath) {
|
|
|
38
39
|
function importNamedImportsPattern(importPath) {
|
|
39
40
|
return `${importPattern(importPath)} NamedImports`;
|
|
40
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* Creates a pattern to look for import specifier.
|
|
44
|
+
* @param importPath - import path to look for
|
|
45
|
+
* @param specifier - specifier to look for, e.g., "MyClass"
|
|
46
|
+
* @returns {string} ast query pattern
|
|
47
|
+
*/
|
|
48
|
+
function importSpecifierPattern(importPath, specifier) {
|
|
49
|
+
return `ImportDeclaration:has(StringLiteral[value=${importPath}]):has(ImportSpecifier:has(Identifier[name=${specifier}]))`;
|
|
50
|
+
}
|
|
41
51
|
//# sourceMappingURL=patterns.utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patterns.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/utils/patterns.utils.ts"],"names":[],"mappings":";AAAA,mBAAmB;;AAOnB,kFAEC;AASD,sCAEC;AAOD,wDAEC;AAOD,8DAEC;
|
|
1
|
+
{"version":3,"file":"patterns.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/utils/patterns.utils.ts"],"names":[],"mappings":";AAAA,mBAAmB;;AAOnB,kFAEC;AASD,sCAEC;AAOD,wDAEC;AAOD,8DAEC;AAQD,wDAEC;AA9CD;;;;GAIG;AACH,SAAgB,mCAAmC,CAAC,cAAsB;IACxE,OAAO,2CAA2C,cAAc,IAAI,CAAA;AACtE,CAAC;AAED,kBAAkB;AAElB;;;;GAIG;AACH,SAAgB,aAAa,CAAC,UAAkB;IAC9C,OAAO,6CAA6C,UAAU,IAAI,CAAA;AACpE,CAAC;AAED;;;;GAIG;AACH,SAAgB,sBAAsB,CAAC,UAAkB;IACvD,OAAO,6CAA6C,UAAU,yBAAyB,CAAA;AACzF,CAAC;AAED;;;;GAIG;AACH,SAAgB,yBAAyB,CAAC,UAAkB;IAC1D,OAAO,GAAG,aAAa,CAAC,UAAU,CAAC,eAAe,CAAA;AACpD,CAAC;AAED;;;;;GAKG;AACH,SAAgB,sBAAsB,CAAC,UAAkB,EAAE,SAAiB;IAC1E,OAAO,6CAA6C,UAAU,8CAA8C,SAAS,KAAK,CAAA;AAC5H,CAAC"}
|
|
@@ -9,11 +9,7 @@ const devkit_1 = require("@nx/devkit");
|
|
|
9
9
|
*/
|
|
10
10
|
function printWarnings(warning, affectedFiles) {
|
|
11
11
|
if (affectedFiles.length > 0) {
|
|
12
|
-
devkit_1.logger.warn(warning);
|
|
13
|
-
devkit_1.logger.warn(`Found in:`);
|
|
14
|
-
affectedFiles.forEach((file) => {
|
|
15
|
-
devkit_1.logger.warn(` - ${file}`);
|
|
16
|
-
});
|
|
12
|
+
devkit_1.logger.warn(`${warning} Found in: ${affectedFiles.join(',')}`);
|
|
17
13
|
}
|
|
18
14
|
}
|
|
19
15
|
//# sourceMappingURL=print-warnings.utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"print-warnings.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/utils/print-warnings.utils.ts"],"names":[],"mappings":";;AAOA,
|
|
1
|
+
{"version":3,"file":"print-warnings.utils.js","sourceRoot":"","sources":["../../../../../../libs/nx-migration-utils/src/lib/utils/print-warnings.utils.ts"],"names":[],"mappings":";;AAOA,sCAIC;AAXD,uCAAmC;AAEnC;;;;GAIG;AACH,SAAgB,aAAa,CAAC,OAAe,EAAE,aAAuB;IACpE,IAAI,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC7B,eAAM,CAAC,IAAI,CAAC,GAAG,OAAO,cAAc,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;IAChE,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Checks if file contains import specifier.
|
|
3
|
+
* @param fileContent - the content of the file to check
|
|
4
|
+
* @param importPath - import path to look for
|
|
5
|
+
* @param specifier - import specifier to look for
|
|
6
|
+
* @returns {boolean} if file contains the import
|
|
7
|
+
*/
|
|
8
|
+
export declare function isImportSpecifierInContent(fileContent: string, importPath: string, specifier: string): boolean;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isImportSpecifierInContent = isImportSpecifierInContent;
|
|
4
|
+
const tsquery_1 = require("@phenomnomnominal/tsquery");
|
|
5
|
+
const patterns_utils_1 = require("../patterns.utils");
|
|
6
|
+
/**
|
|
7
|
+
* Checks if file contains import specifier.
|
|
8
|
+
* @param fileContent - the content of the file to check
|
|
9
|
+
* @param importPath - import path to look for
|
|
10
|
+
* @param specifier - import specifier to look for
|
|
11
|
+
* @returns {boolean} if file contains the import
|
|
12
|
+
*/
|
|
13
|
+
function isImportSpecifierInContent(fileContent, importPath, specifier) {
|
|
14
|
+
const contentAst = (0, tsquery_1.ast)(fileContent);
|
|
15
|
+
const imports = (0, tsquery_1.query)(contentAst, (0, patterns_utils_1.importSpecifierPattern)(importPath, specifier));
|
|
16
|
+
return imports.length > 0;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=is-import-in-file-content.utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-import-in-file-content.utils.js","sourceRoot":"","sources":["../../../../../../../libs/nx-migration-utils/src/lib/utils/validation/is-import-in-file-content.utils.ts"],"names":[],"mappings":";;AAUA,gEAMC;AAhBD,uDAAsD;AACtD,sDAA0D;AAE1D;;;;;;GAMG;AACH,SAAgB,0BAA0B,CAAC,WAAmB,EAAE,UAAkB,EAAE,SAAiB;IACnG,MAAM,UAAU,GAAG,IAAA,aAAG,EAAC,WAAW,CAAC,CAAA;IAEnC,MAAM,OAAO,GAAG,IAAA,eAAK,EAAoB,UAAU,EAAE,IAAA,uCAAsB,EAAC,UAAU,EAAE,SAAS,CAAC,CAAC,CAAA;IAEnG,OAAO,OAAO,CAAC,MAAM,GAAG,CAAC,CAAA;AAC3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../libs/nx-migration-utils/src/test-setup.ts"],"names":[],"mappings":";;AAAA,2CAAsC;AACtC,0CAAyC;AACzC,gBAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA"}
|