@common-stack/rollup-vite-utils 6.0.6-alpha.68 → 6.0.6-alpha.69
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/lib/default-config.json.cjs +38 -2
- package/lib/default-config.json.cjs.map +1 -1
- package/lib/default-config.json.js +38 -2
- package/lib/default-config.json.js.map +1 -1
- package/lib/preStartup/configLoader/configLoader.cjs +38 -6
- package/lib/preStartup/configLoader/configLoader.cjs.map +1 -1
- package/lib/preStartup/configLoader/configLoader.d.ts +3 -3
- package/lib/preStartup/configLoader/configLoader.js +38 -6
- package/lib/preStartup/configLoader/configLoader.js.map +1 -1
- package/package.json +2 -2
|
@@ -9,6 +9,24 @@ var copyOperations = [
|
|
|
9
9
|
generateModule: true
|
|
10
10
|
}
|
|
11
11
|
];
|
|
12
|
+
var i18n = {
|
|
13
|
+
enabled: true,
|
|
14
|
+
fallbackLng: "en",
|
|
15
|
+
supportedLngs: [
|
|
16
|
+
"en",
|
|
17
|
+
"es"
|
|
18
|
+
],
|
|
19
|
+
defaultNS: "common",
|
|
20
|
+
react: {
|
|
21
|
+
useSuspense: false
|
|
22
|
+
},
|
|
23
|
+
backend: {
|
|
24
|
+
loadPath: "/cdm-locales/{{lng}}/{{ns}}.json",
|
|
25
|
+
loadServerPath: "./public/cdm-locales/{{lng}}/{{ns}}.json"
|
|
26
|
+
},
|
|
27
|
+
packages: [
|
|
28
|
+
]
|
|
29
|
+
};
|
|
12
30
|
var modules = [
|
|
13
31
|
"@adminide-stack/platform-browser"
|
|
14
32
|
];
|
|
@@ -24,10 +42,28 @@ var paths = {
|
|
|
24
42
|
clientMiddlewareExec: "@common-stack/frontend-stack-react/lib/tools/clientLoaderWithMiddleware.js",
|
|
25
43
|
withErrorHandlerUtil: "@common-stack/rollup-vite-utils/lib/utils/withErrorHandleUtil.js"
|
|
26
44
|
};
|
|
45
|
+
var buildConfig = {
|
|
46
|
+
__CLIENT__: false,
|
|
47
|
+
__SERVER__: true,
|
|
48
|
+
__DEV__: "$.env.DEV|false",
|
|
49
|
+
__TEST__: "$.env.TEST|false",
|
|
50
|
+
__CDN_URL__: "$.env.CDN_URL|''",
|
|
51
|
+
__GRAPHQL_URL__: "$.env.GRAPHQL_URL|'http://localhost:8080/graphql'",
|
|
52
|
+
__DEBUGGING__: "$.env.DEBUGGING|false",
|
|
53
|
+
__SSR__: "$.env.SSR|true",
|
|
54
|
+
__API_URL__: "$.env.GRAPHQL_URL|'http://localhost:8080/graphql'",
|
|
55
|
+
__FRONTEND_BUILD_DIR__: "$.env.FRONTEND_BUILD_DIR|'./dist/client'",
|
|
56
|
+
__WEB_DEV_SERVER_PORT__: "$.env.CLIENT_URL.url.port|'3000'",
|
|
57
|
+
__GRAPHQL_ENDPOINT__: "$.env.GRAPHQL_URL.url.pathname|'/graphql'",
|
|
58
|
+
__LOCAL_SERVER_HOST__: "$.env.CLIENT_URL.url.hostname|'localhost'",
|
|
59
|
+
__BACKEND_URL__: "$.env.BACKEND_URL|'http://localhost:8080'"
|
|
60
|
+
};
|
|
27
61
|
var defaultConfig = {
|
|
28
62
|
commonPaths: commonPaths,
|
|
29
63
|
copyOperations: copyOperations,
|
|
64
|
+
i18n: i18n,
|
|
30
65
|
modules: modules,
|
|
31
66
|
uiFramework: uiFramework,
|
|
32
|
-
paths: paths
|
|
33
|
-
|
|
67
|
+
paths: paths,
|
|
68
|
+
buildConfig: buildConfig
|
|
69
|
+
};exports.buildConfig=buildConfig;exports.commonPaths=commonPaths;exports.copyOperations=copyOperations;exports.default=defaultConfig;exports.i18n=i18n;exports.modules=modules;exports.paths=paths;exports.uiFramework=uiFramework;//# sourceMappingURL=default-config.json.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-config.json.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"default-config.json.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -9,6 +9,24 @@ var copyOperations = [
|
|
|
9
9
|
generateModule: true
|
|
10
10
|
}
|
|
11
11
|
];
|
|
12
|
+
var i18n = {
|
|
13
|
+
enabled: true,
|
|
14
|
+
fallbackLng: "en",
|
|
15
|
+
supportedLngs: [
|
|
16
|
+
"en",
|
|
17
|
+
"es"
|
|
18
|
+
],
|
|
19
|
+
defaultNS: "common",
|
|
20
|
+
react: {
|
|
21
|
+
useSuspense: false
|
|
22
|
+
},
|
|
23
|
+
backend: {
|
|
24
|
+
loadPath: "/cdm-locales/{{lng}}/{{ns}}.json",
|
|
25
|
+
loadServerPath: "./public/cdm-locales/{{lng}}/{{ns}}.json"
|
|
26
|
+
},
|
|
27
|
+
packages: [
|
|
28
|
+
]
|
|
29
|
+
};
|
|
12
30
|
var modules = [
|
|
13
31
|
"@adminide-stack/platform-browser"
|
|
14
32
|
];
|
|
@@ -24,10 +42,28 @@ var paths = {
|
|
|
24
42
|
clientMiddlewareExec: "@common-stack/frontend-stack-react/lib/tools/clientLoaderWithMiddleware.js",
|
|
25
43
|
withErrorHandlerUtil: "@common-stack/rollup-vite-utils/lib/utils/withErrorHandleUtil.js"
|
|
26
44
|
};
|
|
45
|
+
var buildConfig = {
|
|
46
|
+
__CLIENT__: false,
|
|
47
|
+
__SERVER__: true,
|
|
48
|
+
__DEV__: "$.env.DEV|false",
|
|
49
|
+
__TEST__: "$.env.TEST|false",
|
|
50
|
+
__CDN_URL__: "$.env.CDN_URL|''",
|
|
51
|
+
__GRAPHQL_URL__: "$.env.GRAPHQL_URL|'http://localhost:8080/graphql'",
|
|
52
|
+
__DEBUGGING__: "$.env.DEBUGGING|false",
|
|
53
|
+
__SSR__: "$.env.SSR|true",
|
|
54
|
+
__API_URL__: "$.env.GRAPHQL_URL|'http://localhost:8080/graphql'",
|
|
55
|
+
__FRONTEND_BUILD_DIR__: "$.env.FRONTEND_BUILD_DIR|'./dist/client'",
|
|
56
|
+
__WEB_DEV_SERVER_PORT__: "$.env.CLIENT_URL.url.port|'3000'",
|
|
57
|
+
__GRAPHQL_ENDPOINT__: "$.env.GRAPHQL_URL.url.pathname|'/graphql'",
|
|
58
|
+
__LOCAL_SERVER_HOST__: "$.env.CLIENT_URL.url.hostname|'localhost'",
|
|
59
|
+
__BACKEND_URL__: "$.env.BACKEND_URL|'http://localhost:8080'"
|
|
60
|
+
};
|
|
27
61
|
var defaultConfig = {
|
|
28
62
|
commonPaths: commonPaths,
|
|
29
63
|
copyOperations: copyOperations,
|
|
64
|
+
i18n: i18n,
|
|
30
65
|
modules: modules,
|
|
31
66
|
uiFramework: uiFramework,
|
|
32
|
-
paths: paths
|
|
33
|
-
|
|
67
|
+
paths: paths,
|
|
68
|
+
buildConfig: buildConfig
|
|
69
|
+
};export{buildConfig,commonPaths,copyOperations,defaultConfig as default,i18n,modules,paths,uiFramework};//# sourceMappingURL=default-config.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-config.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"default-config.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,16 +1,48 @@
|
|
|
1
1
|
'use strict';var copyIfVersionChanged=require('../copyIfVersionChanged.cjs');function resolvePath(config, path) {
|
|
2
2
|
if (typeof path === 'string' && path.startsWith('$.')) {
|
|
3
|
-
|
|
3
|
+
const parts = path.split('.').slice(1); // Remove the leading '$.'
|
|
4
|
+
if (parts[0] === 'env') {
|
|
5
|
+
const [envVar, defaultValue] = parts[1].split('|'); // Support default value with |
|
|
6
|
+
const envValue = process.env[envVar];
|
|
7
|
+
if (!envValue && !defaultValue) {
|
|
8
|
+
throw new Error(`Environment variable ${envVar} is not provided`);
|
|
9
|
+
}
|
|
10
|
+
const resolvedValue = envValue || defaultValue; // Use envValue or defaultValue if provided
|
|
11
|
+
if (parts[2] === 'url') {
|
|
12
|
+
try {
|
|
13
|
+
const url = new URL(resolvedValue);
|
|
14
|
+
if (parts[3] === 'pathname') {
|
|
15
|
+
return url.pathname;
|
|
16
|
+
}
|
|
17
|
+
if (parts[3] === 'port') {
|
|
18
|
+
return url.port || '80'; // Default to port 80 if not specified
|
|
19
|
+
}
|
|
20
|
+
return resolvedValue; // If no specific part, return the full URL
|
|
21
|
+
}
|
|
22
|
+
catch (error) {
|
|
23
|
+
throw new Error(`Invalid URL provided in environment variable ${envVar}`);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return resolvedValue; // Return the environment variable or the default value
|
|
27
|
+
}
|
|
28
|
+
// Handle regular config path resolution
|
|
29
|
+
const result = parts.reduce((o, p) => {
|
|
30
|
+
if (o === undefined || o[p] === undefined) {
|
|
31
|
+
throw new Error(`Config value for path $.${parts.join('.')} is not provided`);
|
|
32
|
+
}
|
|
33
|
+
return o[p];
|
|
34
|
+
}, config);
|
|
35
|
+
return result;
|
|
4
36
|
}
|
|
5
|
-
return path;
|
|
37
|
+
return path; // Return the path if it's a normal string
|
|
6
38
|
}
|
|
7
39
|
function resolveConfigPaths(config) {
|
|
8
40
|
return {
|
|
9
41
|
...config,
|
|
10
|
-
copyOperations: config.copyOperations.map(op => ({
|
|
42
|
+
copyOperations: config.copyOperations.map((op) => ({
|
|
11
43
|
...op,
|
|
12
|
-
destPath: resolvePath(config, op.destPath)
|
|
13
|
-
}))
|
|
44
|
+
destPath: resolvePath(config, op.destPath),
|
|
45
|
+
})),
|
|
14
46
|
};
|
|
15
47
|
}
|
|
16
48
|
async function performCopyOperations(config) {
|
|
@@ -24,4 +56,4 @@ async function performCopyOperations(config) {
|
|
|
24
56
|
console.error(`Error in copy process for ${operation.packageName}:`, err);
|
|
25
57
|
}
|
|
26
58
|
}
|
|
27
|
-
}exports.performCopyOperations=performCopyOperations;exports.resolveConfigPaths=resolveConfigPaths;//# sourceMappingURL=configLoader.cjs.map
|
|
59
|
+
}exports.performCopyOperations=performCopyOperations;exports.resolveConfigPaths=resolveConfigPaths;exports.resolvePath=resolvePath;//# sourceMappingURL=configLoader.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configLoader.cjs","sources":["../../../src/preStartup/configLoader/configLoader.ts"],"sourcesContent":[null],"names":["copyIfVersionChanged"],"mappings":"
|
|
1
|
+
{"version":3,"file":"configLoader.cjs","sources":["../../../src/preStartup/configLoader/configLoader.ts"],"sourcesContent":[null],"names":["copyIfVersionChanged"],"mappings":"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"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare function
|
|
2
|
-
declare function
|
|
3
|
-
export
|
|
1
|
+
export declare function resolvePath(config: any, path: any): any;
|
|
2
|
+
export declare function resolveConfigPaths(config: any): any;
|
|
3
|
+
export declare function performCopyOperations(config: any): Promise<void>;
|
|
@@ -1,16 +1,48 @@
|
|
|
1
1
|
import {copyIfVersionChanged}from'../copyIfVersionChanged.js';function resolvePath(config, path) {
|
|
2
2
|
if (typeof path === 'string' && path.startsWith('$.')) {
|
|
3
|
-
|
|
3
|
+
const parts = path.split('.').slice(1); // Remove the leading '$.'
|
|
4
|
+
if (parts[0] === 'env') {
|
|
5
|
+
const [envVar, defaultValue] = parts[1].split('|'); // Support default value with |
|
|
6
|
+
const envValue = process.env[envVar];
|
|
7
|
+
if (!envValue && !defaultValue) {
|
|
8
|
+
throw new Error(`Environment variable ${envVar} is not provided`);
|
|
9
|
+
}
|
|
10
|
+
const resolvedValue = envValue || defaultValue; // Use envValue or defaultValue if provided
|
|
11
|
+
if (parts[2] === 'url') {
|
|
12
|
+
try {
|
|
13
|
+
const url = new URL(resolvedValue);
|
|
14
|
+
if (parts[3] === 'pathname') {
|
|
15
|
+
return url.pathname;
|
|
16
|
+
}
|
|
17
|
+
if (parts[3] === 'port') {
|
|
18
|
+
return url.port || '80'; // Default to port 80 if not specified
|
|
19
|
+
}
|
|
20
|
+
return resolvedValue; // If no specific part, return the full URL
|
|
21
|
+
}
|
|
22
|
+
catch (error) {
|
|
23
|
+
throw new Error(`Invalid URL provided in environment variable ${envVar}`);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return resolvedValue; // Return the environment variable or the default value
|
|
27
|
+
}
|
|
28
|
+
// Handle regular config path resolution
|
|
29
|
+
const result = parts.reduce((o, p) => {
|
|
30
|
+
if (o === undefined || o[p] === undefined) {
|
|
31
|
+
throw new Error(`Config value for path $.${parts.join('.')} is not provided`);
|
|
32
|
+
}
|
|
33
|
+
return o[p];
|
|
34
|
+
}, config);
|
|
35
|
+
return result;
|
|
4
36
|
}
|
|
5
|
-
return path;
|
|
37
|
+
return path; // Return the path if it's a normal string
|
|
6
38
|
}
|
|
7
39
|
function resolveConfigPaths(config) {
|
|
8
40
|
return {
|
|
9
41
|
...config,
|
|
10
|
-
copyOperations: config.copyOperations.map(op => ({
|
|
42
|
+
copyOperations: config.copyOperations.map((op) => ({
|
|
11
43
|
...op,
|
|
12
|
-
destPath: resolvePath(config, op.destPath)
|
|
13
|
-
}))
|
|
44
|
+
destPath: resolvePath(config, op.destPath),
|
|
45
|
+
})),
|
|
14
46
|
};
|
|
15
47
|
}
|
|
16
48
|
async function performCopyOperations(config) {
|
|
@@ -24,4 +56,4 @@ async function performCopyOperations(config) {
|
|
|
24
56
|
console.error(`Error in copy process for ${operation.packageName}:`, err);
|
|
25
57
|
}
|
|
26
58
|
}
|
|
27
|
-
}export{performCopyOperations,resolveConfigPaths};//# sourceMappingURL=configLoader.js.map
|
|
59
|
+
}export{performCopyOperations,resolveConfigPaths,resolvePath};//# sourceMappingURL=configLoader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configLoader.js","sources":["../../../src/preStartup/configLoader/configLoader.ts"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"configLoader.js","sources":["../../../src/preStartup/configLoader/configLoader.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/rollup-vite-utils",
|
|
3
|
-
"version": "6.0.6-alpha.
|
|
3
|
+
"version": "6.0.6-alpha.69",
|
|
4
4
|
"description": "Client Module for react app",
|
|
5
5
|
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"typescript": {
|
|
60
60
|
"definition": "lib/index.d.ts"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "d68b518f92e142cc60246f3242d535e05a35a01c"
|
|
63
63
|
}
|