@unisphere/cli 1.58.6 → 1.58.8
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/bundler/package/rollup.js +17 -37
- package/bundler/runtime/rollup.js +169 -99
- package/package.json +1 -1
- package/src/lib/commands/package/package-commands.js.map +1 -1
- package/src/lib/utils/unisphere/build-unisphere-elements.js +0 -1
- package/src/lib/utils/unisphere/build-unisphere-elements.js.map +1 -1
|
@@ -7,6 +7,7 @@ const svg = require('@svgr/rollup');
|
|
|
7
7
|
const fs = require('fs');
|
|
8
8
|
const path = require('path');
|
|
9
9
|
const { getEnvVariables } = require('../../src/lib/utils/unisphere/get-env-variables');
|
|
10
|
+
const os = require('os');
|
|
10
11
|
|
|
11
12
|
const { envVariables, isUnisphereEnvironment } = getEnvVariables();
|
|
12
13
|
|
|
@@ -21,29 +22,18 @@ console.log('[unisphere] Helpful Tip: When running a build if it is using outdat
|
|
|
21
22
|
const isDeployingRuntime = envVariables.UNISPHERE_MODE === 'runtime';
|
|
22
23
|
console.log(`Building the package in '${isDeployingRuntime ? 'runtime' : 'package'}' mode`);
|
|
23
24
|
|
|
24
|
-
const withUnisphere = (
|
|
25
|
-
console.log('[unisphere] removing unisphere config used to monkey patch @nw/rollup');
|
|
26
|
-
delete config.unisphere;
|
|
25
|
+
const withUnisphere = (rollupConfig) => {
|
|
27
26
|
|
|
28
|
-
const onwarn =
|
|
27
|
+
const onwarn = rollupConfig.onwarn;
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
config.onwarn = function(warning) {
|
|
33
|
-
if ( warning.code === 'THIS_IS_UNDEFINED' ) { return; }
|
|
29
|
+
rollupConfig.onwarn = function (warning) {
|
|
30
|
+
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
|
34
31
|
return onwarn?.(warning)
|
|
35
32
|
}
|
|
36
33
|
|
|
37
|
-
const externalFn =
|
|
38
|
-
if (isDeployingRuntime) {
|
|
39
|
-
|
|
40
|
-
if (id.includes(`node_modules`)) {
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
return false;
|
|
44
|
-
};
|
|
45
|
-
} else {
|
|
46
|
-
config.external = (id, parent) => {
|
|
34
|
+
const externalFn = rollupConfig.external;
|
|
35
|
+
if (!isDeployingRuntime) {
|
|
36
|
+
rollupConfig.external = (id, parent) => {
|
|
47
37
|
if (
|
|
48
38
|
bundledPackages.find(
|
|
49
39
|
(bundledPackage) =>
|
|
@@ -59,28 +49,16 @@ const withUnisphere = (config) => {
|
|
|
59
49
|
};
|
|
60
50
|
}
|
|
61
51
|
|
|
62
|
-
|
|
52
|
+
rollupConfig.plugins.push(analyze({
|
|
53
|
+
summaryOnly: true, // Adjusts the output to show summary information
|
|
63
54
|
limit: 20 // Limits the output to the top 10 items
|
|
64
|
-
}),
|
|
65
|
-
"process.env['NODE_ENV']": JSON.stringify(`${envVariables.UNISPHERE_ENV}`),
|
|
55
|
+
}), replace({
|
|
56
|
+
"process.env['NODE_ENV']": JSON.stringify(`${envVariables.UNISPHERE_ENV}`),
|
|
66
57
|
preventAssignment: true,
|
|
67
58
|
}),);
|
|
68
|
-
return
|
|
59
|
+
return rollupConfig;
|
|
69
60
|
};
|
|
70
61
|
|
|
71
|
-
const withUnisphereInterceptors = (config) => {
|
|
72
|
-
console.log('patching rollup package config');
|
|
73
|
-
config.unisphere = {
|
|
74
|
-
interceptors: {
|
|
75
|
-
compilerOptions : (options) => {
|
|
76
|
-
return options;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
return config
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|
|
84
62
|
module.exports = (unisphereConfig) => {
|
|
85
63
|
|
|
86
64
|
const projectJsonPath = path.join(unisphereConfig.cwd, 'project.json');
|
|
@@ -91,6 +69,8 @@ module.exports = (unisphereConfig) => {
|
|
|
91
69
|
}
|
|
92
70
|
const outputPath = path.join('..', '..', '..', 'dist', ...sourcePath);
|
|
93
71
|
|
|
72
|
+
// dev note - this one is copied from the original rollup config file created by npm create nx-workspace
|
|
73
|
+
// when upgrading nx from 22 should compare the file created by nx to this one
|
|
94
74
|
|
|
95
75
|
return withUnisphere(withNx(
|
|
96
76
|
{
|
|
@@ -102,7 +82,7 @@ module.exports = (unisphereConfig) => {
|
|
|
102
82
|
format: ['esm'],
|
|
103
83
|
assets: [{ input: '.', output: '.', glob: 'README.md' }],
|
|
104
84
|
},
|
|
105
|
-
|
|
85
|
+
{
|
|
106
86
|
// Provide additional rollup configuration here. See: https://rollupjs.org/configuration-options
|
|
107
87
|
plugins: [
|
|
108
88
|
svg({
|
|
@@ -114,7 +94,7 @@ module.exports = (unisphereConfig) => {
|
|
|
114
94
|
limit: 10000, // 10kB
|
|
115
95
|
}),
|
|
116
96
|
],
|
|
117
|
-
}
|
|
97
|
+
}
|
|
118
98
|
)
|
|
119
99
|
)
|
|
120
100
|
}
|
|
@@ -11,92 +11,110 @@ const url = require('@rollup/plugin-url');
|
|
|
11
11
|
const svg = require('@svgr/rollup');
|
|
12
12
|
const { getEnvVariables } = require('../../src/lib/utils/unisphere/get-env-variables');
|
|
13
13
|
const { getUnisphereWorkspaceFile } = require('../../src/lib/utils/unisphere/unisphere-workspace-file');
|
|
14
|
+
const os = require('os');
|
|
15
|
+
|
|
16
|
+
function createTempBuildTsconfig({
|
|
17
|
+
projectRoot,
|
|
18
|
+
baseTsconfigPath, // can be absolute OR relative to projectRoot
|
|
19
|
+
compilerOptions = {},
|
|
20
|
+
}) {
|
|
21
|
+
if (!projectRoot) {
|
|
22
|
+
throw new Error('createTempBuildTsconfig: projectRoot is required');
|
|
23
|
+
}
|
|
24
|
+
if (!baseTsconfigPath) {
|
|
25
|
+
throw new Error('createTempBuildTsconfig: baseTsconfigPath is required');
|
|
26
|
+
}
|
|
14
27
|
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
if (!isUnisphereEnvironment) {
|
|
18
|
-
console.warn(
|
|
19
|
-
'WARNING: Building or linting unisphere elements from outside the unisphere cli will not handle runtimes.'
|
|
20
|
-
);
|
|
21
|
-
}
|
|
22
|
-
const isDeployingRuntime = envVariables.UNISPHERE_MODE === 'runtime';
|
|
28
|
+
const resolvedProjectRoot = path.resolve(projectRoot);
|
|
23
29
|
|
|
24
|
-
|
|
30
|
+
// ✅ resolve base tsconfig relative to projectRoot (unless already absolute)
|
|
31
|
+
const resolvedBaseTsconfig = path.isAbsolute(baseTsconfigPath)
|
|
32
|
+
? baseTsconfigPath
|
|
33
|
+
: path.resolve(resolvedProjectRoot, baseTsconfigPath);
|
|
25
34
|
|
|
26
|
-
|
|
35
|
+
if (!fs.existsSync(resolvedBaseTsconfig)) {
|
|
36
|
+
throw new Error(
|
|
37
|
+
`createTempBuildTsconfig: base tsconfig not found at: ${resolvedBaseTsconfig}`
|
|
38
|
+
);
|
|
39
|
+
}
|
|
27
40
|
|
|
41
|
+
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'unisphere-tsc-'));
|
|
42
|
+
const tempTsconfigPath = path.join(tempDir, 'tsconfig.build.json');
|
|
28
43
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
return acc;
|
|
37
|
-
}, {});
|
|
44
|
+
// ✅ important: "extends" can be absolute; TS supports it.
|
|
45
|
+
const tsconfig = {
|
|
46
|
+
extends: resolvedBaseTsconfig,
|
|
47
|
+
compilerOptions: {
|
|
48
|
+
...compilerOptions,
|
|
49
|
+
},
|
|
50
|
+
};
|
|
38
51
|
|
|
39
|
-
|
|
52
|
+
console.log(`creating temporary build file in '${tempTsconfigPath}'`)
|
|
53
|
+
fs.writeFileSync(tempTsconfigPath, JSON.stringify(tsconfig, null, 2), 'utf8');
|
|
40
54
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
55
|
+
// Optional cleanup
|
|
56
|
+
const cleanup = () => {
|
|
57
|
+
try {
|
|
58
|
+
console.log(`removing temporary folder '${tempDir}'`)
|
|
59
|
+
fs.rmSync(tempDir, { recursive: true, force: true });
|
|
60
|
+
} catch { }
|
|
61
|
+
};
|
|
62
|
+
process.on('exit', cleanup);
|
|
63
|
+
process.on('SIGINT', cleanup);
|
|
64
|
+
process.on('SIGTERM', cleanup);
|
|
48
65
|
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
66
|
+
return tempTsconfigPath;
|
|
53
67
|
}
|
|
54
68
|
|
|
55
|
-
const
|
|
69
|
+
const { envVariables, isUnisphereEnvironment } = getEnvVariables();
|
|
56
70
|
|
|
57
|
-
|
|
71
|
+
function generateDynamicPaths(projectRoot) {
|
|
72
|
+
const paths = {};
|
|
58
73
|
|
|
59
|
-
|
|
74
|
+
try {
|
|
75
|
+
// Find workspace root by following tsconfig extends chain
|
|
76
|
+
const { workspaceRoot, baseTsconfigPath } = findWorkspaceRoot(projectRoot);
|
|
77
|
+
console.log(`[unisphere] Found workspace root: ${workspaceRoot}`);
|
|
78
|
+
console.log(`[unisphere] Base tsconfig path: ${baseTsconfigPath}`);
|
|
60
79
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
compiler: 'babel',
|
|
66
|
-
external: ['react', 'react-dom', 'react/jsx-runtime'],
|
|
67
|
-
format: ['esm'],
|
|
68
|
-
assets: [{ input: '.', output: '.', glob: 'README.md' }],
|
|
69
|
-
};
|
|
80
|
+
// Read base tsconfig to get original paths
|
|
81
|
+
if (fs.existsSync(baseTsconfigPath)) {
|
|
82
|
+
const baseTsconfig = JSON.parse(fs.readFileSync(baseTsconfigPath, 'utf8'));
|
|
83
|
+
const originalPaths = baseTsconfig.compilerOptions?.paths || {};
|
|
70
84
|
|
|
71
|
-
|
|
72
|
-
plugins : [
|
|
73
|
-
svg({
|
|
74
|
-
svgo: false,
|
|
75
|
-
titleProp: true,
|
|
76
|
-
ref: true,
|
|
77
|
-
}),
|
|
78
|
-
url({
|
|
79
|
-
limit: 10000, // 10kB
|
|
80
|
-
}),
|
|
81
|
-
]
|
|
82
|
-
}
|
|
85
|
+
console.log(`[unisphere] Found ${Object.keys(originalPaths).length} original paths in base tsconfig`);
|
|
83
86
|
|
|
84
|
-
|
|
85
|
-
|
|
87
|
+
// Convert each path from .ts to .d.ts in dist folder
|
|
88
|
+
Object.entries(originalPaths).forEach(([key, pathArray]) => {
|
|
89
|
+
const convertedPaths = pathArray.map(originalPath => {
|
|
90
|
+
// Convert index.ts to index.d.ts and prefix with dist
|
|
91
|
+
return originalPath.replace(/index\.ts$/, 'index.d.ts').replace(/^/, 'dist/');
|
|
92
|
+
});
|
|
86
93
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
94
|
+
paths[key] = convertedPaths;
|
|
95
|
+
console.log(`[unisphere] Converted path mapping: ${key} -> ${convertedPaths.join(', ')}`);
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
} catch (error) {
|
|
99
|
+
console.warn(`[unisphere] Failed to generate dynamic paths: ${error.message}`);
|
|
100
|
+
console.log(`[unisphere] Falling back to basic path generation`);
|
|
92
101
|
}
|
|
93
102
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
103
|
+
console.log(`[unisphere] Generated ${Object.keys(paths).length} path mappings`);
|
|
104
|
+
return paths;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (!isUnisphereEnvironment) {
|
|
108
|
+
console.warn(
|
|
109
|
+
'WARNING: Building or linting unisphere elements from outside the unisphere cli will not handle runtimes.'
|
|
97
110
|
);
|
|
98
111
|
}
|
|
99
112
|
|
|
113
|
+
const isProduction = envVariables.UNISPHERE_ENV === 'production';
|
|
114
|
+
|
|
115
|
+
console.log('[unisphere] Helpful Tip: When running a build if it is using outdated rollup file, you should clear the nx cache by running `rm -rf node_modules/.cache/nx && npx nx reset`.');
|
|
116
|
+
|
|
117
|
+
|
|
100
118
|
function getUnispherePackagesDistList(cwd) {
|
|
101
119
|
|
|
102
120
|
let folderPattern = path.join(cwd, 'dist', 'unisphere', 'packages', '*');
|
|
@@ -105,7 +123,7 @@ function getUnispherePackagesDistList(cwd) {
|
|
|
105
123
|
console.log('[unisphere] running on Windows');
|
|
106
124
|
folderPattern = folderPattern.replace(/\\/g, '/');
|
|
107
125
|
}
|
|
108
|
-
console.log('[unisphere] looking for packages in', folderPattern);
|
|
126
|
+
console.log('[unisphere] looking for packages in', folderPattern);
|
|
109
127
|
const folderPaths = glob.sync(folderPattern);
|
|
110
128
|
const result = [];
|
|
111
129
|
|
|
@@ -118,7 +136,7 @@ function getUnispherePackagesDistList(cwd) {
|
|
|
118
136
|
const packageName = packageJson.name;
|
|
119
137
|
|
|
120
138
|
if (packageName) {
|
|
121
|
-
result.push({distPath, packageName});
|
|
139
|
+
result.push({ distPath, packageName });
|
|
122
140
|
}
|
|
123
141
|
}
|
|
124
142
|
});
|
|
@@ -128,50 +146,102 @@ function getUnispherePackagesDistList(cwd) {
|
|
|
128
146
|
return result;
|
|
129
147
|
}
|
|
130
148
|
|
|
131
|
-
const withUnisphere = (rollupConfig, unispherePackagesDistList) => {
|
|
132
149
|
|
|
133
|
-
|
|
134
|
-
delete rollupConfig.unisphere;
|
|
150
|
+
const getWithNx = (unisphereConfig) => {
|
|
135
151
|
|
|
136
|
-
|
|
137
|
-
if (warning.code === 'THIS_IS_UNDEFINED') return;
|
|
138
|
-
if (warning.code === 'MODULE_LEVEL_DIRECTIVE') return;
|
|
139
|
-
warn(warning); // this requires Rollup 0.46
|
|
140
|
-
};
|
|
152
|
+
const relativeSourcePath = path.relative(unisphereConfig.cwd, unisphereConfig.workspaceConfiguration.cwd);
|
|
141
153
|
|
|
142
|
-
|
|
154
|
+
const outputPath = path.join(relativeSourcePath, 'dist', ...unisphereConfig.sourcePath);
|
|
143
155
|
|
|
144
|
-
|
|
145
|
-
rollupConfig.output[0].entryFileNames = 'index.esm.js'
|
|
146
|
-
} else {
|
|
147
|
-
rollupConfig.output[0].entryFileNames = 'index.dev.esm.js'
|
|
148
|
-
}
|
|
156
|
+
const dynamicPaths = generateDynamicPaths(unisphereConfig.cwd);
|
|
149
157
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
158
|
+
const tsConfig = createTempBuildTsconfig({
|
|
159
|
+
projectRoot: unisphereConfig.cwd,
|
|
160
|
+
baseTsconfigPath: 'tsconfig.lib.json',
|
|
161
|
+
compilerOptions: {
|
|
162
|
+
paths: dynamicPaths,
|
|
163
|
+
},
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
// dev note - this one is copied from the original rollup config file created by npm create nx-workspace
|
|
167
|
+
// when upgrading nx from 22 should compare the file created by nx to this one
|
|
168
|
+
const nxConfig = {
|
|
169
|
+
main: './src/index.ts',
|
|
170
|
+
outputPath,
|
|
171
|
+
tsConfig,
|
|
172
|
+
compiler: 'babel',
|
|
173
|
+
external: [],
|
|
174
|
+
format: ['esm'],
|
|
175
|
+
assets: [{ input: '.', output: '.', glob: 'README.md' }],
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
const rollupConfig = {
|
|
179
|
+
external: () => false,
|
|
180
|
+
plugins: [
|
|
181
|
+
svg({
|
|
182
|
+
svgo: false,
|
|
183
|
+
titleProp: true,
|
|
184
|
+
ref: true,
|
|
163
185
|
}),
|
|
164
|
-
|
|
165
|
-
|
|
186
|
+
url({
|
|
187
|
+
limit: 10000, // 10kB
|
|
166
188
|
}),
|
|
167
|
-
|
|
168
|
-
|
|
189
|
+
]
|
|
190
|
+
}
|
|
169
191
|
|
|
192
|
+
const unispherePackagesDistList = getUnispherePackagesDistList(unisphereConfig.workspaceConfiguration.cwd);
|
|
193
|
+
return withUnisphere(withNx(
|
|
194
|
+
nxConfig,
|
|
195
|
+
rollupConfig
|
|
196
|
+
), unispherePackagesDistList);
|
|
170
197
|
|
|
171
|
-
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const withUnisphere = (rollupConfig, unispherePackagesDistList) => {
|
|
201
|
+
|
|
202
|
+
console.log('[unisphere] removing unisphere config used to monkey patch @nw/rollup');
|
|
203
|
+
delete rollupConfig.unisphere;
|
|
204
|
+
|
|
205
|
+
rollupConfig.onwarn = (warning, warn) => {
|
|
206
|
+
if (warning.code === 'THIS_IS_UNDEFINED') return;
|
|
207
|
+
if (warning.code === 'MODULE_LEVEL_DIRECTIVE') return;
|
|
208
|
+
warn(warning); // this requires Rollup 0.46
|
|
172
209
|
};
|
|
173
210
|
|
|
174
211
|
|
|
212
|
+
if (isProduction) {
|
|
213
|
+
rollupConfig.output[0].entryFileNames = 'index.esm.js'
|
|
214
|
+
} else {
|
|
215
|
+
rollupConfig.output[0].entryFileNames = 'index.dev.esm.js'
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// dev note - i'm almost certain that the alias is responsible for rollup to avoid
|
|
219
|
+
// (!) Unresolved dependencies
|
|
220
|
+
rollupConfig.plugins.push(
|
|
221
|
+
alias({
|
|
222
|
+
entries: unispherePackagesDistList.map(item => {
|
|
223
|
+
return { find: item.packageName, replacement: item.distPath }
|
|
224
|
+
})
|
|
225
|
+
}),
|
|
226
|
+
analyze({
|
|
227
|
+
summaryOnly: true, // Adjusts the output to show summary information
|
|
228
|
+
limit: 20 // Limits the output to the top 10 items
|
|
229
|
+
}), replace({
|
|
230
|
+
'process.env.UNISPHERE_DEV': JSON.stringify(`${envVariables.UNISPHERE_DEV}`),
|
|
231
|
+
'process.env.NODE_ENV': JSON.stringify(`${envVariables.UNISPHERE_ENV}`),
|
|
232
|
+
preventAssignment: true,
|
|
233
|
+
}),
|
|
234
|
+
shim({
|
|
235
|
+
'@statelyai/inspect': `export const createBrowserInspector = () => { return undefined };`
|
|
236
|
+
}),
|
|
237
|
+
isProduction ? terser() : undefined
|
|
238
|
+
);
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
return rollupConfig;
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
|
|
175
245
|
|
|
176
246
|
|
|
177
247
|
module.exports = (unisphereConfig) => {
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package-commands.js","sourceRoot":"","sources":["../../../../../../../packages/unisphere-cli/src/lib/commands/package/package-commands.ts"],"names":[],"mappings":";;;AAAA,yCAAoC;AACpC,+CAAyD;AACzD,mDAAqD;
|
|
1
|
+
{"version":3,"file":"package-commands.js","sourceRoot":"","sources":["../../../../../../../packages/unisphere-cli/src/lib/commands/package/package-commands.ts"],"names":[],"mappings":";;;AAAA,yCAAoC;AACpC,+CAAyD;AACzD,mDAAqD;AAG9C,MAAM,oBAAoB,GAAG,GAAY,EAAE;IAChD,MAAM,cAAc,GAAG,IAAI,mBAAO,CAAC,SAAS,CAAC,CAAC;IAE9C,cAAc,CAAC,WAAW,CAAC,iDAAiD,CAAC,CAAC;IAE9E,IAAA,kCAAkB,EAAC,cAAc,CAAC,CAAC;IACnC,IAAA,8BAAoB,EAAC,cAAc,CAAC,CAAC;IACrC,OAAO,cAAc,CAAC;AACxB,CAAC,CAAC;AARW,QAAA,oBAAoB,wBAQ/B"}
|
|
@@ -145,7 +145,6 @@ const createListrForBuildingUnisphereApplication = (_a) => tslib_1.__awaiter(voi
|
|
|
145
145
|
title: 'Running lint',
|
|
146
146
|
command: `npx nx run ${nxProjectName}:lint --fix`,
|
|
147
147
|
cwd,
|
|
148
|
-
env: (0, exports.getUnisphereEnv)(production, 'runtime'),
|
|
149
148
|
}),
|
|
150
149
|
(0, create_exec_task_1.createExecTask)({
|
|
151
150
|
title: 'Running build',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build-unisphere-elements.js","sourceRoot":"","sources":["../../../../../../../packages/unisphere-cli/src/lib/utils/unisphere/build-unisphere-elements.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"build-unisphere-elements.js","sourceRoot":"","sources":["../../../../../../../packages/unisphere-cli/src/lib/utils/unisphere/build-unisphere-elements.ts"],"names":[],"mappings":"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"}
|