@onecx/accelerator 8.6.0 → 8.7.0
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/index.cjs +9 -7
- package/dist/index.mjs +9 -7
- package/package.json +1 -1
- package/src/lib/utils/get-onecx-shared-library-config.d.ts +6 -0
- package/src/lib/utils/get-onecx-shared-library-config.js +15 -8
- package/src/lib/utils/get-onecx-shared-library-config.js.map +1 -1
- package/src/lib/utils/get-onecx-shared-recommendations.d.ts +2 -0
- package/src/lib/utils/get-onecx-shared-recommendations.js +2 -0
- package/src/lib/utils/get-onecx-shared-recommendations.js.map +1 -1
- package/src/version.d.ts +1 -1
- package/src/version.js +1 -1
package/dist/index.cjs
CHANGED
|
@@ -689,22 +689,23 @@ function getOneCXSharedRecommendations(libraryName, sharedConfig) {
|
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
// libs/accelerator/src/lib/utils/get-onecx-shared-library-config.ts
|
|
692
|
-
var
|
|
692
|
+
var angularCore = "@angular/core";
|
|
693
|
+
var logger = createLogger("getOneCXSharedLibraryConfig");
|
|
694
|
+
function getNodeRequire() {
|
|
693
695
|
try {
|
|
694
696
|
if (typeof process !== "undefined" && process?.versions?.node) {
|
|
695
697
|
return eval("require");
|
|
696
|
-
} else {
|
|
697
|
-
throw new Error("Node.js environment is required for dynamic require.");
|
|
698
698
|
}
|
|
699
699
|
} catch {
|
|
700
|
-
|
|
700
|
+
logger.warn(`Node require is not available.`);
|
|
701
701
|
}
|
|
702
|
-
|
|
703
|
-
|
|
702
|
+
return null;
|
|
703
|
+
}
|
|
704
704
|
var EXPORTS_BLACKLIST = [".", "./package.json"];
|
|
705
705
|
var DEFAULT_DEPENDENCY_BLACKLIST = [
|
|
706
706
|
/^@nx(\/.*)?$/,
|
|
707
|
-
/^@module-federation(\/.*)
|
|
707
|
+
/^@module-federation(\/.*)?$/,
|
|
708
|
+
/^@onecx\/build-utils(\/.*)?$/
|
|
708
709
|
];
|
|
709
710
|
var DEFAULT_FULL_PACKAGE_BLACKLIST = [
|
|
710
711
|
"@angular/common/locales/global/*",
|
|
@@ -741,6 +742,7 @@ function isDependencyBlacklisted(dependency) {
|
|
|
741
742
|
});
|
|
742
743
|
}
|
|
743
744
|
function readDependencyPackageJson(dependency) {
|
|
745
|
+
const nodeRequire = getNodeRequire();
|
|
744
746
|
if (!nodeRequire) return null;
|
|
745
747
|
let packagePath;
|
|
746
748
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -639,22 +639,23 @@ function getOneCXSharedRecommendations(libraryName, sharedConfig) {
|
|
|
639
639
|
}
|
|
640
640
|
|
|
641
641
|
// libs/accelerator/src/lib/utils/get-onecx-shared-library-config.ts
|
|
642
|
-
var
|
|
642
|
+
var angularCore = "@angular/core";
|
|
643
|
+
var logger = createLogger("getOneCXSharedLibraryConfig");
|
|
644
|
+
function getNodeRequire() {
|
|
643
645
|
try {
|
|
644
646
|
if (typeof process !== "undefined" && process?.versions?.node) {
|
|
645
647
|
return eval("require");
|
|
646
|
-
} else {
|
|
647
|
-
throw new Error("Node.js environment is required for dynamic require.");
|
|
648
648
|
}
|
|
649
649
|
} catch {
|
|
650
|
-
|
|
650
|
+
logger.warn(`Node require is not available.`);
|
|
651
651
|
}
|
|
652
|
-
|
|
653
|
-
|
|
652
|
+
return null;
|
|
653
|
+
}
|
|
654
654
|
var EXPORTS_BLACKLIST = [".", "./package.json"];
|
|
655
655
|
var DEFAULT_DEPENDENCY_BLACKLIST = [
|
|
656
656
|
/^@nx(\/.*)?$/,
|
|
657
|
-
/^@module-federation(\/.*)
|
|
657
|
+
/^@module-federation(\/.*)?$/,
|
|
658
|
+
/^@onecx\/build-utils(\/.*)?$/
|
|
658
659
|
];
|
|
659
660
|
var DEFAULT_FULL_PACKAGE_BLACKLIST = [
|
|
660
661
|
"@angular/common/locales/global/*",
|
|
@@ -691,6 +692,7 @@ function isDependencyBlacklisted(dependency) {
|
|
|
691
692
|
});
|
|
692
693
|
}
|
|
693
694
|
function readDependencyPackageJson(dependency) {
|
|
695
|
+
const nodeRequire = getNodeRequire();
|
|
694
696
|
if (!nodeRequire) return null;
|
|
695
697
|
let packagePath;
|
|
696
698
|
try {
|
package/package.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { SharedLibraryConfig } from "./get-onecx-shared-recommendations";
|
|
2
2
|
/**
|
|
3
|
+
* @deprecated This interface is deprecated and will be moved to `@onecx/build-utils` in v9.
|
|
4
|
+
*
|
|
3
5
|
* Callbacks that can be passed to the SharedLibraryConfigOptions function to customize its behavior.
|
|
4
6
|
* @property {function} configCallback - A function that receives the package name and current shared configuration, returning a modified configuration. Must return a SharedLibraryConfig object.
|
|
5
7
|
* @property {function} packageFilterCallback - A function that takes a package name and returns a boolean. Return true to EXCLUDE the package, false to INCLUDE it, use onecxPackageFilter to use default blacklist.
|
|
@@ -9,12 +11,16 @@ export interface SharedLibraryConfigOptions {
|
|
|
9
11
|
packageFilterCallback?: (packageName: string) => boolean | undefined;
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9.
|
|
15
|
+
*
|
|
12
16
|
* onecxPackageFilter is the default OneCX package filter.
|
|
13
17
|
* @param {string} packageName - The full package name to check against the default blacklist.
|
|
14
18
|
* @returns {boolean} - Returns `true` if the package is on the default blacklist, `false` otherwise.
|
|
15
19
|
*/
|
|
16
20
|
export declare function onecxPackageFilter(packageName: string): boolean;
|
|
17
21
|
/**
|
|
22
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9.
|
|
23
|
+
*
|
|
18
24
|
* Generates a shared library configuration object for all dependencies (main + subpackages if needed).
|
|
19
25
|
* @param {Record<string, string>} dependencies - Map of dependency names to versions
|
|
20
26
|
* @param {boolean} shouldGenerateSubDeps - Flag indicating whether to include subpackages based on exports
|
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
import { getOneCXSharedRecommendations } from "./get-onecx-shared-recommendations";
|
|
2
|
+
import { createLogger } from "./logger.utils";
|
|
3
|
+
const angularCore = '@angular/core';
|
|
4
|
+
const logger = createLogger('getOneCXSharedLibraryConfig');
|
|
2
5
|
/**
|
|
3
6
|
* As we have { platform: 'browser'} in accelerator's & integration-interface project.json.
|
|
4
7
|
* We use dynamic require (provided by Node.js) to read package.json of dependencies, which is not supported in browser environment.
|
|
5
|
-
*
|
|
8
|
+
* Resolved lazily on first call so that merely importing this module from a browser bundle does not throw.
|
|
9
|
+
* Only `getOneCXSharedLibraryConfig` (build-time webpack config) calls into the file system helpers below.
|
|
6
10
|
*/
|
|
7
|
-
|
|
11
|
+
function getNodeRequire() {
|
|
8
12
|
try {
|
|
9
13
|
if (typeof process !== 'undefined' && process?.versions?.node) {
|
|
10
14
|
return eval('require');
|
|
11
15
|
}
|
|
12
|
-
else {
|
|
13
|
-
throw new Error('Node.js environment is required for dynamic require.');
|
|
14
|
-
}
|
|
15
16
|
}
|
|
16
17
|
catch {
|
|
17
|
-
|
|
18
|
+
logger.warn(`Node require is not available.`);
|
|
18
19
|
}
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
21
22
|
/**
|
|
22
23
|
* Blacklist of export paths to exclude when generating subpackage entries.
|
|
23
24
|
*/
|
|
@@ -28,6 +29,7 @@ const EXPORTS_BLACKLIST = ['.', './package.json'];
|
|
|
28
29
|
const DEFAULT_DEPENDENCY_BLACKLIST = [
|
|
29
30
|
/^@nx(\/.*)?$/,
|
|
30
31
|
/^@module-federation(\/.*)?$/,
|
|
32
|
+
/^@onecx\/build-utils(\/.*)?$/,
|
|
31
33
|
];
|
|
32
34
|
/**
|
|
33
35
|
* For identifying full package paths that should be blacklisted.
|
|
@@ -58,6 +60,8 @@ function removeExportPrefix(str) {
|
|
|
58
60
|
return str.replace('./', '');
|
|
59
61
|
}
|
|
60
62
|
/**
|
|
63
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9.
|
|
64
|
+
*
|
|
61
65
|
* onecxPackageFilter is the default OneCX package filter.
|
|
62
66
|
* @param {string} packageName - The full package name to check against the default blacklist.
|
|
63
67
|
* @returns {boolean} - Returns `true` if the package is on the default blacklist, `false` otherwise.
|
|
@@ -86,6 +90,7 @@ function isDependencyBlacklisted(dependency) {
|
|
|
86
90
|
* @returns {Object|null} Parsed package.json or null if not found
|
|
87
91
|
*/
|
|
88
92
|
function readDependencyPackageJson(dependency) {
|
|
93
|
+
const nodeRequire = getNodeRequire();
|
|
89
94
|
if (!nodeRequire)
|
|
90
95
|
return null;
|
|
91
96
|
let packagePath;
|
|
@@ -150,6 +155,8 @@ function generatePackageConfig(versionMap, dependency, shouldGenerateSubDeps, pa
|
|
|
150
155
|
return allPackages;
|
|
151
156
|
}
|
|
152
157
|
/**
|
|
158
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9.
|
|
159
|
+
*
|
|
153
160
|
* Generates a shared library configuration object for all dependencies (main + subpackages if needed).
|
|
154
161
|
* @param {Record<string, string>} dependencies - Map of dependency names to versions
|
|
155
162
|
* @param {boolean} shouldGenerateSubDeps - Flag indicating whether to include subpackages based on exports
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-onecx-shared-library-config.js","sourceRoot":"","sources":["../../../../../../libs/accelerator/src/lib/utils/get-onecx-shared-library-config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAuB,MAAM,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"get-onecx-shared-library-config.js","sourceRoot":"","sources":["../../../../../../libs/accelerator/src/lib/utils/get-onecx-shared-library-config.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,6 +8,8 @@ export interface SharedLibraryConfig {
|
|
|
8
8
|
shareScope?: string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9. Use `getOneCXSharedLibraryConfig` to generate the shared config instead.
|
|
12
|
+
*
|
|
11
13
|
* Provides recommendations for shared library configurations for specific OneCX-related libraries.
|
|
12
14
|
* If the library name matches certain patterns (e.g., Angular, OneCX, RxJS, PrimeNG, ngx-translate, ngrx), it modifies the shared configuration to set singleton, strictVersion, and eager to false.
|
|
13
15
|
* For non-matching libraries, it returns false and does not modify the configuration.
|
|
@@ -10,6 +10,8 @@ const sharedLibraryPatterns = [
|
|
|
10
10
|
/^@ngrx.*$/,
|
|
11
11
|
];
|
|
12
12
|
/**
|
|
13
|
+
* @deprecated This helper is deprecated and will be moved to `@onecx/build-utils` in v9. Use `getOneCXSharedLibraryConfig` to generate the shared config instead.
|
|
14
|
+
*
|
|
13
15
|
* Provides recommendations for shared library configurations for specific OneCX-related libraries.
|
|
14
16
|
* If the library name matches certain patterns (e.g., Angular, OneCX, RxJS, PrimeNG, ngx-translate, ngrx), it modifies the shared configuration to set singleton, strictVersion, and eager to false.
|
|
15
17
|
* For non-matching libraries, it returns false and does not modify the configuration.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-onecx-shared-recommendations.js","sourceRoot":"","sources":["../../../../../../libs/accelerator/src/lib/utils/get-onecx-shared-recommendations.ts"],"names":[],"mappings":"AAUA;;GAEG;AACH,MAAM,qBAAqB,GAAa;IACtC,cAAc;IACd,YAAY;IACZ,UAAU;IACV,aAAa;IACb,oBAAoB;IACpB,WAAW;CACZ,CAAA;AAED
|
|
1
|
+
{"version":3,"file":"get-onecx-shared-recommendations.js","sourceRoot":"","sources":["../../../../../../libs/accelerator/src/lib/utils/get-onecx-shared-recommendations.ts"],"names":[],"mappings":"AAUA;;GAEG;AACH,MAAM,qBAAqB,GAAa;IACtC,cAAc;IACd,YAAY;IACZ,UAAU;IACV,aAAa;IACb,oBAAoB;IACpB,WAAW;CACZ,CAAA;AAED;;;;;;;;;GASG;AACH,MAAM,UAAU,6BAA6B,CAC3C,WAAmB,EACnB,YAAiC;IAEjC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC;QACxE,OAAO,KAAK,CAAA;IACd,CAAC;IACD,YAAY,CAAC,SAAS,GAAG,KAAK,CAAA;IAC9B,YAAY,CAAC,aAAa,GAAG,KAAK,CAAA;IAClC,YAAY,CAAC,KAAK,GAAG,KAAK,CAAA;IAC1B,OAAO,YAAY,CAAA;AACrB,CAAC"}
|
package/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const LIB_NAME = "@onecx/accelerator";
|
|
2
|
-
export declare const LIB_VERSION = "8.
|
|
2
|
+
export declare const LIB_VERSION = "8.7.0";
|
package/src/version.js
CHANGED