@o3r/workspace 12.1.0-prerelease.79 → 12.1.0-prerelease.80
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/workspace",
|
|
3
|
-
"version": "12.1.0-prerelease.
|
|
3
|
+
"version": "12.1.0-prerelease.80",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@angular/common": "^19.0.0",
|
|
43
43
|
"@angular/compiler-cli": "^19.0.0",
|
|
44
44
|
"@angular/core": "^19.0.0",
|
|
45
|
-
"@o3r/telemetry": "^12.1.0-prerelease.
|
|
45
|
+
"@o3r/telemetry": "^12.1.0-prerelease.80",
|
|
46
46
|
"@schematics/angular": "^19.0.0",
|
|
47
47
|
"ts-node": "~10.9.2",
|
|
48
48
|
"type-fest": "^4.10.2",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@o3r/schematics": "^12.1.0-prerelease.
|
|
63
|
+
"@o3r/schematics": "^12.1.0-prerelease.80",
|
|
64
64
|
"commander": "^13.0.0",
|
|
65
65
|
"globby": "^11.1.0",
|
|
66
66
|
"semver": "^7.5.2",
|
|
@@ -93,12 +93,12 @@
|
|
|
93
93
|
"@nx/jest": "~20.4.0",
|
|
94
94
|
"@nx/js": "~20.4.0",
|
|
95
95
|
"@nx/workspace": "~20.4.0",
|
|
96
|
-
"@o3r/build-helpers": "^12.1.0-prerelease.
|
|
97
|
-
"@o3r/core": "^12.1.0-prerelease.
|
|
98
|
-
"@o3r/eslint-plugin": "^12.1.0-prerelease.
|
|
99
|
-
"@o3r/schematics": "^12.1.0-prerelease.
|
|
100
|
-
"@o3r/telemetry": "^12.1.0-prerelease.
|
|
101
|
-
"@o3r/test-helpers": "^12.1.0-prerelease.
|
|
96
|
+
"@o3r/build-helpers": "^12.1.0-prerelease.80",
|
|
97
|
+
"@o3r/core": "^12.1.0-prerelease.80",
|
|
98
|
+
"@o3r/eslint-plugin": "^12.1.0-prerelease.80",
|
|
99
|
+
"@o3r/schematics": "^12.1.0-prerelease.80",
|
|
100
|
+
"@o3r/telemetry": "^12.1.0-prerelease.80",
|
|
101
|
+
"@o3r/test-helpers": "^12.1.0-prerelease.80",
|
|
102
102
|
"@schematics/angular": "~19.2.0",
|
|
103
103
|
"@stylistic/eslint-plugin": "~3.1.0",
|
|
104
104
|
"@types/jest": "~29.5.2",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jest.helpers.d.ts","sourceRoot":"","sources":["../../../src/utils/jest.helpers.ts"],"names":[],"mappings":"AAYA;;;;;GAKG;AACH,eAAO,MAAM,eAAe,GAAI,gBAAuB,EAAE,
|
|
1
|
+
{"version":3,"file":"jest.helpers.d.ts","sourceRoot":"","sources":["../../../src/utils/jest.helpers.ts"],"names":[],"mappings":"AAYA;;;;;GAKG;AACH,eAAO,MAAM,eAAe,GAAI,gBAAuB,EAAE,0BAA8C,yBAYtG,CAAC"}
|
|
@@ -10,7 +10,7 @@ const globby_1 = require("globby");
|
|
|
10
10
|
* @param jestConfigPattern Pattern to the jest config files
|
|
11
11
|
* @returns list of Jest projects
|
|
12
12
|
*/
|
|
13
|
-
const getJestProjects = (rootDir = process.cwd(), jestConfigPattern = 'jest.config.{j,t}s') => {
|
|
13
|
+
const getJestProjects = (rootDir = process.cwd(), jestConfigPattern = 'jest.config.{c,m,}{j,t}s') => {
|
|
14
14
|
const rootPackageJson = (0, node_path_1.resolve)(rootDir, 'package.json');
|
|
15
15
|
if (!(0, node_fs_1.existsSync)(rootPackageJson)) {
|
|
16
16
|
// eslint-disable-next-line no-console -- no other logger available
|
|
@@ -21,7 +21,7 @@ const getJestProjects = (rootDir = process.cwd(), jestConfigPattern = 'jest.conf
|
|
|
21
21
|
const jestConfigFileLists = jestConfigPatterns?.map((pattern) => (0, globby_1.sync)(pattern, { cwd: rootDir }));
|
|
22
22
|
return jestConfigFileLists
|
|
23
23
|
?.flat()
|
|
24
|
-
.map((jestConfigFile) => node_path_1.posix.join('<rootDir>', jestConfigFile.replace(/jest\.config\.[jt]s$/, '')).replace(/\\+/g, '/'));
|
|
24
|
+
.map((jestConfigFile) => node_path_1.posix.join('<rootDir>', jestConfigFile.replace(/jest\.config\.[cm]?[jt]s$/, '')).replace(/\\+/g, '/'));
|
|
25
25
|
};
|
|
26
26
|
exports.getJestProjects = getJestProjects;
|
|
27
27
|
//# sourceMappingURL=jest.helpers.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jest.helpers.js","sourceRoot":"","sources":["../../../src/utils/jest.helpers.ts"],"names":[],"mappings":";;;AAAA,qCAGiB;AACjB,yCAGmB;AACnB,mCAEgB;AAEhB;;;;;GAKG;AACI,MAAM,eAAe,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,GAAG,EAAE,EAAE,iBAAiB,GAAG,
|
|
1
|
+
{"version":3,"file":"jest.helpers.js","sourceRoot":"","sources":["../../../src/utils/jest.helpers.ts"],"names":[],"mappings":";;;AAAA,qCAGiB;AACjB,yCAGmB;AACnB,mCAEgB;AAEhB;;;;;GAKG;AACI,MAAM,eAAe,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,GAAG,EAAE,EAAE,iBAAiB,GAAG,0BAA0B,EAAE,EAAE;IACzG,MAAM,eAAe,GAAG,IAAA,mBAAO,EAAC,OAAO,EAAE,cAAc,CAAC,CAAC;IACzD,IAAI,CAAC,IAAA,oBAAU,EAAC,eAAe,CAAC,EAAE,CAAC;QACjC,mEAAmE;QACnE,OAAO,CAAC,IAAI,CAAC,4BAA4B,OAAO,EAAE,CAAC,CAAC;QACpD,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,MAAM,kBAAkB,GAAyB,IAAI,CAAC,KAAK,CAAC,IAAA,sBAAY,EAAC,eAAe,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,WAAmB,EAAE,EAAE,CAAC,iBAAK,CAAC,IAAI,CAAC,WAAW,EAAE,iBAAiB,CAAC,CAAC,CAAC;IACtM,MAAM,mBAAmB,GAAG,kBAAkB,EAAE,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAA,aAAU,EAAC,OAAO,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;IACxG,OAAO,mBAAmB;QACxB,EAAE,IAAI,EAAE;SACP,GAAG,CAAC,CAAC,cAAc,EAAE,EAAE,CAAC,iBAAK,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,CAAC,OAAO,CAAC,2BAA2B,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;AACpI,CAAC,CAAC;AAZW,QAAA,eAAe,mBAY1B"}
|