@ui5/webcomponents-tools 2.15.0-rc.0 → 2.15.0-rc.3

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.
@@ -1,6 +1,5 @@
1
1
  const fs = require("fs").promises;
2
2
  const path = require("path");
3
- const basePath = process.argv[2];
4
3
  const babelCore = require("@babel/core");
5
4
  const babelParser = require("@babel/parser");
6
5
  const babelGenerator = require("@babel/generator").default;
@@ -21,7 +20,7 @@ const convertAmdToEs6 = async (code) => {
21
20
  })).code;
22
21
  }
23
22
 
24
- const convertAbsImportsToRelative = (filePath, code) => {
23
+ const convertAbsImportsToRelative = (filePath, code, basePath) => {
25
24
  let changed = false;
26
25
  // console.log("File processing started: ", srcPath);
27
26
 
@@ -69,7 +68,7 @@ const convertAbsImportsToRelative = (filePath, code) => {
69
68
  }
70
69
 
71
70
  const replaceGlobalCoreUsage = (filePath, code) => {
72
- if (!filePath.includes("Configuration")) {
71
+ if (!filePath.includes("Configuration")) {
73
72
  const replaced = code.replace(/sap\.ui\.getCore\(\)/g, `Core`);
74
73
  return code !== replaced ? `import Core from 'sap/ui/core/Core';${replaced}` : code;
75
74
  }
@@ -77,7 +76,7 @@ const replaceGlobalCoreUsage = (filePath, code) => {
77
76
  return code;
78
77
  };
79
78
 
80
- const transformAmdToES6Module = async (filePath) => {
79
+ const transformAmdToES6Module = async (filePath, basePath) => {
81
80
  await convertSAPUIDefineToDefine(filePath);
82
81
 
83
82
  let code = (await fs.readFile(filePath)).toString();
@@ -86,17 +85,23 @@ const transformAmdToES6Module = async (filePath) => {
86
85
 
87
86
  code = replaceGlobalCoreUsage(filePath, code);
88
87
 
89
- code = convertAbsImportsToRelative(filePath, code);
88
+ code = convertAbsImportsToRelative(filePath, code, basePath);
90
89
 
91
90
  return fs.writeFile(filePath, code);
92
91
  }
93
92
 
94
- const transformAmdToES6Modules = async () => {
93
+ const transformAmdToES6Modules = async (argv) => {
94
+ const basePath = argv[2];
95
95
  const { globby } = await import("globby");
96
96
  const fileNames = await globby(basePath.replace(/\\/g, "/") + "**/*.js");
97
- return Promise.all(fileNames.map(transformAmdToES6Module).filter(x => !!x));
97
+ return Promise.all(fileNames.map(fileName => transformAmdToES6Module(fileName, basePath)).filter(x => !!x))
98
+ .then(() => {
99
+ console.log("Success: all amd modules are transformed to es6!");
100
+ });
98
101
  };
99
102
 
100
- transformAmdToES6Modules().then(() => {
101
- console.log("Success: all amd modules are transformed to es6!");
102
- });
103
+ if (require.main === module) {
104
+ transformAmdToES6Modules(process.argv)
105
+ }
106
+
107
+ exports._ui5mainFn = transformAmdToES6Modules;
package/lib/cem/cem.js ADDED
@@ -0,0 +1,12 @@
1
+ const cemCLI = require("@custom-elements-manifest/analyzer/cli")
2
+
3
+ const main = async argv => {
4
+ const patchedArgv = argv.slice(2);
5
+ await cemCLI.cli({ argv: patchedArgv, cwd: process.cwd(), noWrite: false });
6
+ }
7
+
8
+ if (require.main === module) {
9
+ main(process.argv)
10
+ }
11
+
12
+ exports._ui5mainFn = main;
@@ -5,63 +5,72 @@ const path = require('path');
5
5
  const extenalSchema = require('./schema.json');
6
6
  const internalSchema = require('./schema-internal.json');
7
7
 
8
- // Load your JSON data from the input file
9
- const inputFilePath = path.join(process.cwd(), "dist/custom-elements.json"); // Update with your file path
10
- const customManifest = fs.readFileSync(inputFilePath, 'utf8');
11
- const inputDataInternal = JSON.parse(customManifest);
12
- const devMode = process.env.UI5_CEM_MODE === "dev";
13
8
 
14
- inputDataInternal.modules.forEach(moduleDoc => {
15
- moduleDoc.exports = moduleDoc.exports.
16
- filter(e => moduleDoc.declarations.find(d => d.name === e.declaration.name && ["class", "function", "variable", "enum"].includes(d.kind)) || e.name === "default");
17
- })
9
+ const validateFn = async () => {
10
+ // Load your JSON data from the input file
11
+ const inputFilePath = path.join(process.cwd(), "dist/custom-elements.json"); // Update with your file path
12
+ const customManifest = fs.readFileSync(inputFilePath, 'utf8');
13
+ const inputDataInternal = JSON.parse(customManifest);
14
+ const devMode = process.env.UI5_CEM_MODE === "dev";
18
15
 
19
- const clearProps = (data) => {
20
- if (Array.isArray(data)) {
21
- for (let i = 0; i < data.length; i++) {
22
- if (typeof data[i] === "object") {
23
- if (["enum", "interface"].includes(data[i].kind)) {
24
- data.splice(i, 1);
25
- i--;
26
- } else {
27
- clearProps(data[i]);
16
+ inputDataInternal.modules.forEach(moduleDoc => {
17
+ moduleDoc.exports = moduleDoc.exports.
18
+ filter(e => moduleDoc.declarations.find(d => d.name === e.declaration.name && ["class", "function", "variable", "enum"].includes(d.kind)) || e.name === "default");
19
+ })
20
+
21
+ const clearProps = (data) => {
22
+ if (Array.isArray(data)) {
23
+ for (let i = 0; i < data.length; i++) {
24
+ if (typeof data[i] === "object") {
25
+ if (["enum", "interface"].includes(data[i].kind)) {
26
+ data.splice(i, 1);
27
+ i--;
28
+ } else {
29
+ clearProps(data[i]);
30
+ }
28
31
  }
29
32
  }
33
+ } else if (typeof data === "object") {
34
+ Object.keys(data).forEach(prop => {
35
+ if (prop.startsWith("_ui5")) {
36
+ delete data[prop];
37
+ } else if (typeof data[prop] === "object") {
38
+ clearProps(data[prop]);
39
+ }
40
+ });
30
41
  }
31
- } else if (typeof data === "object") {
32
- Object.keys(data).forEach(prop => {
33
- if (prop.startsWith("_ui5")) {
34
- delete data[prop];
35
- } else if (typeof data[prop] === "object") {
36
- clearProps(data[prop]);
37
- }
38
- });
42
+
43
+ return data;
39
44
  }
40
45
 
41
- return data;
42
- }
46
+ const ajv = new Ajv({ allowUnionTypes: true, allError: true })
47
+ let validate = ajv.compile(internalSchema)
43
48
 
44
- const ajv = new Ajv({ allowUnionTypes: true, allError: true })
45
- let validate = ajv.compile(internalSchema)
49
+ // Validate the JSON data against the schema
50
+ if (devMode) {
51
+ if (validate(inputDataInternal)) {
52
+ console.log('Internal custom element manifest is validated successfully');
53
+ } else {
54
+ console.log(validate.errors)
55
+ throw new Error(`Validation of internal custom elements manifest failed: ${validate.errors}`);
56
+ }
57
+ }
46
58
 
47
- // Validate the JSON data against the schema
48
- if (devMode) {
49
- if (validate(inputDataInternal)) {
50
- console.log('Internal custom element manifest is validated successfully');
51
- } else {
52
- console.log(validate.errors)
53
- throw new Error(`Validation of internal custom elements manifest failed: ${validate.errors}`);
59
+ const inputDataExternal = clearProps(JSON.parse(JSON.stringify(inputDataInternal)));
60
+ validate = ajv.compile(extenalSchema)
61
+
62
+ // Validate the JSON data against the schema
63
+ if (validate(inputDataExternal)) {
64
+ console.log('Custom element manifest is validated successfully');
65
+ fs.writeFileSync(inputFilePath, JSON.stringify(inputDataExternal, null, 2), 'utf8');
66
+ fs.writeFileSync(inputFilePath.replace("custom-elements", "custom-elements-internal"), JSON.stringify(inputDataInternal, null, 2), 'utf8');
67
+ } else if (devMode) {
68
+ throw new Error(`Validation of public custom elements manifest failed: ${validate.errors}`);
54
69
  }
55
70
  }
56
71
 
57
- const inputDataExternal = clearProps(JSON.parse(JSON.stringify(inputDataInternal)));
58
- validate = ajv.compile(extenalSchema)
72
+ if (require.main === module) {
73
+ validateFn()
74
+ }
59
75
 
60
- // Validate the JSON data against the schema
61
- if (validate(inputDataExternal)) {
62
- console.log('Custom element manifest is validated successfully');
63
- fs.writeFileSync(inputFilePath, JSON.stringify(inputDataExternal, null, 2), 'utf8');
64
- fs.writeFileSync(inputFilePath.replace("custom-elements", "custom-elements-internal"), JSON.stringify(inputDataInternal, null, 2), 'utf8');
65
- } else if (devMode) {
66
- throw new Error(`Validation of public custom elements manifest failed: ${validate.errors}`);
67
- }
76
+ exports._ui5mainFn = validateFn;
@@ -30,116 +30,124 @@ const globParent = require('glob-parent');
30
30
 
31
31
  /* CODE */
32
32
 
33
- const args = process.argv.slice(2);
34
- const options = {};
35
-
36
- ['watch', 'clean', 'skip-initial-copy', 'safe', 'silent'].forEach(key => {
37
- const index = args.indexOf(`--${key}`);
38
- if (index >= 0) {
39
- options[key] = true;
40
- args.splice(index, 1);
33
+ const copyAndWatchFn = async (argv) => {
34
+ const args = argv.slice(2);
35
+ const options = {};
36
+
37
+ ['watch', 'clean', 'skip-initial-copy', 'safe', 'silent'].forEach(key => {
38
+ const index = args.indexOf(`--${key}`);
39
+ if (index >= 0) {
40
+ options[key] = true;
41
+ args.splice(index, 1);
42
+ }
43
+ });
44
+
45
+ if (args.length < 2) {
46
+ console.error('Not enough arguments: copy-and-watch [options] <sources> <target>');
47
+ process.exit(1);
41
48
  }
42
- });
43
49
 
44
- if (args.length < 2) {
45
- console.error('Not enough arguments: copy-and-watch [options] <sources> <target>'.red);
46
- process.exit(1);
47
- }
50
+ if (options['skip-initial-copy'] && !options['watch']) {
51
+ console.error('--skip-initial-copy argument is meant to be used with --watch, otherwise no files will be copied');
52
+ process.exit(1);
53
+ }
48
54
 
49
- if (options['skip-initial-copy'] && !options['watch']) {
50
- console.error('--skip-initial-copy argument is meant to be used with --watch, otherwise no files will be copied'.red);
51
- process.exit(1);
52
- }
55
+ const target = args.pop();
56
+ const sources = args;
57
+ const parents = [...new Set(sources.map(globParent))];
53
58
 
54
- const target = args.pop();
55
- const sources = args;
56
- const parents = [...new Set(sources.map(globParent))];
57
-
58
- const findTarget = from => {
59
- const parent = parents
60
- .filter(p => from.indexOf(p) >= 0)
61
- .sort()
62
- .reverse()[0];
63
- return path.join(target, path.relative(parent, from));
64
- };
65
- const createDirIfNotExist = to => {
66
- 'use strict';
67
-
68
- const dirs = [];
69
- let dir = path.dirname(to);
70
-
71
- while (dir !== path.dirname(dir)) {
72
- dirs.unshift(dir);
73
- dir = path.dirname(dir);
74
- }
59
+ const findTarget = from => {
60
+ const parent = parents
61
+ .filter(p => from.indexOf(p) >= 0)
62
+ .sort()
63
+ .reverse()[0];
64
+ return path.join(target, path.relative(parent, from));
65
+ };
66
+ const createDirIfNotExist = to => {
67
+ 'use strict';
68
+
69
+ const dirs = [];
70
+ let dir = path.dirname(to);
75
71
 
76
- dirs.forEach(dir => {
77
- if (!fs.existsSync(dir)) {
78
- fs.mkdirSync(dir);
72
+ while (dir !== path.dirname(dir)) {
73
+ dirs.unshift(dir);
74
+ dir = path.dirname(dir);
79
75
  }
80
- });
81
- };
82
- const copy = from => {
83
- const to = findTarget(from);
84
- createDirIfNotExist(to);
85
- const stats = fs.statSync(from);
86
- if (stats.isDirectory()) {
87
- return;
88
- }
89
- fs.writeFileSync(to, fs.readFileSync(from));
90
- options.silent || console.log('[COPY]'.yellow, from, 'to'.yellow, to);
91
- };
92
- const remove = from => {
93
- const to = findTarget(from);
94
- fs.unlinkSync(to);
95
- options.silent || console.log('[DELETE]'.yellow, to);
96
- };
97
- const rimraf = dir => {
98
- if (fs.existsSync(dir)) {
99
- fs.readdirSync(dir).forEach(entry => {
100
- const entryPath = path.join(dir, entry);
101
- if (fs.lstatSync(entryPath).isDirectory()) {
102
- rimraf(entryPath);
103
- } else {
104
- fs.unlinkSync(entryPath);
76
+
77
+ dirs.forEach(dir => {
78
+ if (!fs.existsSync(dir)) {
79
+ fs.mkdirSync(dir);
105
80
  }
106
81
  });
107
- fs.rmdirSync(dir);
82
+ };
83
+ const copy = from => {
84
+ const to = findTarget(from);
85
+ createDirIfNotExist(to);
86
+ const stats = fs.statSync(from);
87
+ if (stats.isDirectory()) {
88
+ return;
89
+ }
90
+ fs.writeFileSync(to, fs.readFileSync(from));
91
+ options.silent || console.log('[COPY]', from, 'to', to);
92
+ };
93
+ const remove = from => {
94
+ const to = findTarget(from);
95
+ fs.unlinkSync(to);
96
+ options.silent || console.log('[DELETE]', to);
97
+ };
98
+ const rimraf = dir => {
99
+ if (fs.existsSync(dir)) {
100
+ fs.readdirSync(dir).forEach(entry => {
101
+ const entryPath = path.join(dir, entry);
102
+ if (fs.lstatSync(entryPath).isDirectory()) {
103
+ rimraf(entryPath);
104
+ } else {
105
+ fs.unlinkSync(entryPath);
106
+ }
107
+ });
108
+ fs.rmdirSync(dir);
109
+ }
110
+ };
111
+
112
+ // clean
113
+ if (options.clean) {
114
+ rimraf(target);
108
115
  }
109
- };
110
116
 
111
- // clean
112
- if (options.clean) {
113
- rimraf(target);
114
- }
117
+ // initial copy
118
+ if (!options['skip-initial-copy']) {
119
+ sources.forEach(s => glob.sync(s).forEach(copy));
120
+ }
115
121
 
116
- // initial copy
117
- if (!options['skip-initial-copy']) {
118
- sources.forEach(s => glob.sync(s).forEach(copy));
119
- }
122
+ // watch
123
+ if (options.watch) {
124
+ const chokidarOptions = {
125
+ ignoreInitial: true
126
+ };
120
127
 
121
- // watch
122
- if (options.watch) {
123
- const chokidarOptions = {
124
- ignoreInitial: true
125
- };
128
+ if (options.safe) {
129
+ chokidarOptions.awaitWriteFinish = {
130
+ stabilityThreshold: 500,
131
+ pollInterval: 100
132
+ };
133
+ }
126
134
 
127
- if (options.safe) {
128
- chokidarOptions.awaitWriteFinish = {
129
- stabilityThreshold: 500,
130
- pollInterval: 100
131
- };
135
+ chokidar
136
+ .watch(sources, chokidarOptions)
137
+ .on('ready', () => sources.forEach(s => {
138
+ options.silent || console.log('[WATCH]', s);
139
+ }))
140
+ .on('add', copy)
141
+ .on('addDir', copy)
142
+ .on('change', copy)
143
+ .on('unlink', remove)
144
+ .on('unlinkDir', remove)
145
+ .on('error', e => console.log('[ERROR]', e));
132
146
  }
147
+ }
133
148
 
134
- chokidar
135
- .watch(sources, chokidarOptions)
136
- .on('ready', () => sources.forEach(s => {
137
- options.silent || console.log('[WATCH]'.yellow, s);
138
- }))
139
- .on('add', copy)
140
- .on('addDir', copy)
141
- .on('change', copy)
142
- .on('unlink', remove)
143
- .on('unlinkDir', remove)
144
- .on('error', e => console.log('[ERROR]'.red, e));
149
+ if (require.main === module) {
150
+ copyAndWatchFn(process.argv)
145
151
  }
152
+
153
+ exports._ui5mainFn = copyAndWatchFn;
@@ -1,11 +1,10 @@
1
1
  const fs = require("fs").promises;
2
2
  const path = require("path");
3
3
 
4
- const fileList = process.argv[2];
5
- const dest = process.argv[3];
6
- const src = "@openui5/sap.ui.core/src/";
7
-
8
- const generate = async () => {
4
+ const generate = async (argv) => {
5
+ const fileList = argv[2];
6
+ const dest = argv[3];
7
+ const src = "@openui5/sap.ui.core/src/";
9
8
  const filesToCopy = (await fs.readFile(fileList)).toString();
10
9
  // console.log(filesToCopy);
11
10
 
@@ -14,15 +13,22 @@ const generate = async () => {
14
13
 
15
14
  const trimFile = file => file.trim();
16
15
 
17
- return filesToCopy.split("\n").map(trimFile).filter(shouldCopy).map(async moduleName => {
18
- const srcPath = require.resolve(path.join(src, moduleName), {paths: [process.cwd()]});
16
+ const promises = filesToCopy.split("\n").map(trimFile).filter(shouldCopy).map(async moduleName => {
17
+ const srcPath = require.resolve(path.join(src, moduleName), { paths: [process.cwd()] });
19
18
  const destPath = path.join(dest, moduleName);
20
19
 
21
20
  await fs.mkdir(path.dirname(destPath), { recursive: true });
22
21
  return fs.copyFile(srcPath, destPath);
23
22
  });
23
+
24
+ return Promise.all(promises).then(() => {
25
+ console.log("Files copied.");
26
+ });
24
27
  };
25
28
 
26
- generate().then(() => {
27
- console.log("Files copied.");
28
- });
29
+
30
+ if (require.main === module) {
31
+ generate(process.argv)
32
+ }
33
+
34
+ exports._ui5mainFn = generate;
@@ -1,11 +1,6 @@
1
1
  const fs = require("fs").promises;
2
2
  const path = require("path");
3
3
 
4
- const collectionName = process.argv[2] || "SAP-icons-v4";
5
- const collectionVersion = process.argv[3];
6
- const srcFile = collectionVersion ? path.normalize(`src/${collectionVersion}/${collectionName}.json`) : path.normalize(`src/${collectionName}.json`);
7
- const destDir = collectionVersion ? path.normalize(`dist/${collectionVersion}/`) : path.normalize("dist/");
8
-
9
4
  const iconTemplate = (name, pathData, ltr, collection, packageName) => `import { registerIcon } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
10
5
 
11
6
  const name = "${name}";
@@ -71,10 +66,14 @@ const svgTemplate = (pathData) => `<svg xmlns="http://www.w3.org/2000/svg" viewB
71
66
  <path d="${pathData}"/>
72
67
  </svg>`;
73
68
 
74
- const createIcons = async (file) => {
69
+ const createIcons = async (argv) => {
70
+ const collectionName = argv[2] || "SAP-icons-v4";
71
+ const collectionVersion = argv[3];
72
+ const srcFile = collectionVersion ? path.normalize(`src/${collectionVersion}/${collectionName}.json`) : path.normalize(`src/${collectionName}.json`);
73
+ const destDir = collectionVersion ? path.normalize(`dist/${collectionVersion}/`) : path.normalize("dist/");
75
74
  await fs.mkdir(destDir, { recursive: true });
76
75
 
77
- const json = JSON.parse(await fs.readFile(file));
76
+ const json = JSON.parse(await fs.readFile(srcFile));
78
77
 
79
78
  const promises = [];
80
79
  for (let name in json.data) {
@@ -82,8 +81,8 @@ const createIcons = async (file) => {
82
81
  const pathData = iconData.path;
83
82
  const ltr = !!iconData.ltr;
84
83
  const acc = iconData.acc;
85
- const packageName = json.packageName;
86
- const collection = json.collection;
84
+ const packageName = json.packageName;
85
+ const collection = json.collection;
87
86
  const versioned = json.version;
88
87
 
89
88
  const content = acc ? iconAccTemplate(name, pathData, ltr, acc, collection, packageName, versioned) : iconTemplate(name, pathData, ltr, collection, packageName);
@@ -104,14 +103,17 @@ const createIcons = async (file) => {
104
103
  // For non-default collections (SAPTNTIcons and SAPBSIcons) we export the full name - "export default { 'tnt/actor' }"
105
104
  const effectiveName = isDefaultCollection(collection) ? name : getUnversionedFullIconName(name, collection);
106
105
  promises.push(fs.writeFile(path.join(path.normalize("dist/"), `${name}.js`), collectionTemplate(name, json.versions, effectiveName)));
107
- promises.push(fs.writeFile(path.join(path.normalize("dist/"), `${name}.d.ts`), collectionTypeDefinitionTemplate(effectiveName, acc)));
106
+ promises.push(fs.writeFile(path.join(path.normalize("dist/"), `${name}.d.ts`), collectionTypeDefinitionTemplate(effectiveName, acc)));
108
107
  }
109
108
  }
110
109
 
111
- return Promise.all(promises);
110
+ return Promise.all(promises)
111
+ .then(() => {
112
+ console.log("Icons created.");
113
+ });
112
114
  };
113
115
 
114
- const isDefaultCollection = collectionName => collectionName === "SAP-icons-v4" || collectionName === "SAP-icons-v5";
116
+ const isDefaultCollection = collectionName => collectionName === "SAP-icons-v4" || collectionName === "SAP-icons-v5";
115
117
  const getUnversionedFullIconName = (name, collection) => `${getUnversionedCollectionName(collection)}/${name}`;
116
118
  const getUnversionedCollectionName = collectionName => CollectionVersionedToUnversionedMap[collectionName] || collectionName;
117
119
 
@@ -122,6 +124,8 @@ const CollectionVersionedToUnversionedMap = {
122
124
  "business-suite-v2": "business-suite",
123
125
  };
124
126
 
125
- createIcons(srcFile).then(() => {
126
- console.log("Icons created.");
127
- });
127
+ if (require.main === module) {
128
+ createIcons(process.argv)
129
+ }
130
+
131
+ exports._ui5mainFn = createIcons;
@@ -1,11 +1,10 @@
1
1
  const fs = require("fs").promises;
2
2
  const path = require("path");
3
3
 
4
- if (process.argv.length < 7) {
5
- throw new Error("Not enough arguments");
6
- }
7
-
8
- const generate = async () => {
4
+ const generate = async (argv) => {
5
+ if (argv.length < 7) {
6
+ throw new Error("Not enough arguments");
7
+ }
9
8
 
10
9
  const ORIGINAL_TEXTS = {
11
10
  UnableToLoad: "UnableToLoad",
@@ -70,12 +69,12 @@ const generate = async () => {
70
69
  SuccessHighFive: ORIGINAL_TEXTS.BalloonSky
71
70
  };
72
71
 
73
- const srcPath = process.argv[2];
74
- const defaultText = process.argv[3] === "true";
75
- const illustrationsPrefix = process.argv[4];
76
- const illustrationSet = process.argv[5];
77
- const destPath = process.argv[6];
78
- const collection = process.argv[7];
72
+ const srcPath = argv[2];
73
+ const defaultText = argv[3] === "true";
74
+ const illustrationsPrefix = argv[4];
75
+ const illustrationSet = argv[5];
76
+ const destPath = argv[6];
77
+ const collection = argv[7];
79
78
  const fileNamePattern = new RegExp(`${illustrationsPrefix}-.+-(.+).svg`);
80
79
  // collect each illustration name because each one should have Sample.js file
81
80
  const fileNames = new Set();
@@ -126,8 +125,7 @@ const generate = async () => {
126
125
  import dialogSvg from "./${illustrationsPrefix}-Dialog-${illustrationName}.js";
127
126
  import sceneSvg from "./${illustrationsPrefix}-Scene-${illustrationName}.js";
128
127
  import spotSvg from "./${illustrationsPrefix}-Spot-${illustrationName}.js";
129
- import dotSvg from "./${illustrationsPrefix}-${hasDot}-${illustrationName}.js";${
130
- defaultText ? `import {
128
+ import dotSvg from "./${illustrationsPrefix}-${hasDot}-${illustrationName}.js";${defaultText ? `import {
131
129
  IM_TITLE_${illustrationNameUpperCase},
132
130
  IM_SUBTITLE_${illustrationNameUpperCase},
133
131
  } from "../generated/i18n/i18n-defaults.js";` : ``}
@@ -184,17 +182,23 @@ export { dialogSvg, sceneSvg, spotSvg, dotSvg };`
184
182
  }
185
183
  });
186
184
 
187
- return Promise.all(promises).then(() => {
188
- const nestedPromises = [];
189
- for (let illustrationName of fileNames) {
190
- nestedPromises.push(fs.writeFile(path.join(destPath, `${illustrationName}.js`), illustrationImportTemplate(illustrationName)));
191
- nestedPromises.push(fs.writeFile(path.join(destPath, `${illustrationName}.d.ts`), illustrationTypeDefinition(illustrationName)));
192
- }
185
+ return Promise.all(promises)
186
+ .then(() => {
187
+ const nestedPromises = [];
188
+ for (let illustrationName of fileNames) {
189
+ nestedPromises.push(fs.writeFile(path.join(destPath, `${illustrationName}.js`), illustrationImportTemplate(illustrationName)));
190
+ nestedPromises.push(fs.writeFile(path.join(destPath, `${illustrationName}.d.ts`), illustrationTypeDefinition(illustrationName)));
191
+ }
193
192
 
194
- return Promise.all(nestedPromises);
195
- });
193
+ return Promise.all(nestedPromises);
194
+ })
195
+ .then(() => {
196
+ console.log("Illustrations generated.");
197
+ });
196
198
  };
197
199
 
198
- generate().then(() => {
199
- console.log("Illustrations generated.");
200
- });
200
+ if (require.main === module) {
201
+ generate(process.argv)
202
+ }
203
+
204
+ exports._ui5mainFn = generate;