@sap/artifact-management 1.17.2 → 1.18.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/README.md +2 -0
- package/dist/projectapi.js +3 -0
- package/dist/projectapi.js.LICENSE.txt +86 -0
- package/dist/src/cp/templates/file-templates/OverviewPage-template.html +1 -1
- package/dist/src/cp/templates/file-templates/launchpadPage-template.html +2 -2
- package/dist/src/index.js +3 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/project-api/CommandExecutor.js +232 -0
- package/dist/src/project-api/CommandExecutor.js.map +1 -0
- package/dist/src/project-api/ProjectCLI.js +125 -409
- package/dist/src/project-api/ProjectCLI.js.map +1 -1
- package/dist/templates/assets/SAP_R_grad.svg +1 -0
- package/dist/templates/assets/header.jpg +0 -0
- package/dist/templates/assets/launchpad.css +7 -0
- package/dist/templates/assets/preview.css +78 -0
- package/dist/templates/file-templates/OverviewPage-template.html +52 -0
- package/dist/templates/file-templates/Preview-template.xml +108 -0
- package/dist/templates/file-templates/launchpadPage-template.html +29 -0
- package/dist/templates/launchpad-ui5-app-template/package.json +18 -0
- package/dist/templates/launchpad-ui5-app-template/ui5.yaml +5 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/i18n/i18n.properties +9 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/manifest.json +84 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/xs-app.json +31 -0
- package/dist/templates/mta-cap-db-template.yaml +10 -0
- package/dist/templates/mta-cap-srv-template.yaml +14 -0
- package/dist/templates/mta-cap-template.yaml +21 -0
- package/dist/templates/mta-ui-deployer-template.yaml +6 -0
- package/dist/tsconfig.tsbuildinfo +100 -63
- package/dist/types/src/index.d.ts +1 -0
- package/dist/types/src/project-api/CommandExecutor.d.ts +5 -0
- package/package.json +7 -17
|
@@ -5,349 +5,116 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.cli = void 0;
|
|
8
|
-
const ProjectImpl_1 = __importDefault(require("./ProjectImpl"));
|
|
9
|
-
const js_yaml_1 = __importDefault(require("js-yaml"));
|
|
10
8
|
const yargs_1 = __importDefault(require("yargs"));
|
|
11
|
-
const CallDeferred_1 = __importDefault(require("../commons/CallDeferred"));
|
|
12
9
|
const artifact_management_base_1 = require("@sap/artifact-management-base");
|
|
13
|
-
const
|
|
10
|
+
const CommandExecutor_1 = __importDefault(require("./CommandExecutor"));
|
|
14
11
|
async function cli() {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
yargs.positional('debug', {
|
|
103
|
-
type: 'boolean',
|
|
104
|
-
default: false,
|
|
105
|
-
describe: 'enable logging',
|
|
106
|
-
});
|
|
107
|
-
yargs.positional('loglevel', {
|
|
108
|
-
type: 'string',
|
|
109
|
-
default: undefined,
|
|
110
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
111
|
-
});
|
|
112
|
-
}, async (argv) => {
|
|
113
|
-
if (!configureLogger(argv)) {
|
|
114
|
-
return;
|
|
115
|
-
}
|
|
116
|
-
artifact_management_base_1.getLogger().info('Gathering project info...');
|
|
117
|
-
const projectPath = argv.path || '.';
|
|
118
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
119
|
-
const mtaObject = await api.getManifest();
|
|
120
|
-
console.log(js_yaml_1.default.dump(mtaObject));
|
|
121
|
-
})
|
|
122
|
-
.command('build [path] [useHeadlessGenerator]', 'Generate an mta.yaml file and build an mtar file', (yargs) => {
|
|
123
|
-
yargs.positional('debug', {
|
|
124
|
-
type: 'boolean',
|
|
125
|
-
default: false,
|
|
126
|
-
describe: 'enable logging',
|
|
127
|
-
});
|
|
128
|
-
yargs.positional('loglevel', {
|
|
129
|
-
type: 'string',
|
|
130
|
-
default: undefined,
|
|
131
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
132
|
-
});
|
|
133
|
-
}, async (argv) => {
|
|
134
|
-
if (!configureLogger(argv)) {
|
|
135
|
-
return;
|
|
136
|
-
}
|
|
137
|
-
const projectPath = argv.path || '.';
|
|
138
|
-
const useHeadlessGenerator = argv.useHeadlessGenerator;
|
|
139
|
-
if (useHeadlessGenerator && useHeadlessGenerator === 'true') {
|
|
140
|
-
const api = new ProjectImpl_1.default(projectPath, false, !!useHeadlessGenerator);
|
|
141
|
-
await api.build();
|
|
142
|
-
}
|
|
143
|
-
else {
|
|
144
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
145
|
-
await api.build();
|
|
146
|
-
}
|
|
147
|
-
})
|
|
148
|
-
.command('buildV2 [path]', 'Generate an mta.yaml, generate zips and mtad.yaml file', (yargs) => {
|
|
149
|
-
yargs.positional('debug', {
|
|
150
|
-
type: 'boolean',
|
|
151
|
-
default: false,
|
|
152
|
-
describe: 'enable logging',
|
|
153
|
-
});
|
|
154
|
-
yargs.positional('loglevel', {
|
|
155
|
-
type: 'string',
|
|
156
|
-
default: undefined,
|
|
157
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
158
|
-
});
|
|
159
|
-
}, async (argv) => {
|
|
160
|
-
if (!configureLogger(argv)) {
|
|
161
|
-
return;
|
|
162
|
-
}
|
|
163
|
-
const projectPath = argv.path || '.';
|
|
164
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
165
|
-
await api.buildV2();
|
|
166
|
-
})
|
|
167
|
-
.command('deploy [path] [useHeadlessGenerator]', 'Generate an mta.yaml file, build mtar file and deploy it', (yargs) => {
|
|
168
|
-
yargs.positional('debug', {
|
|
169
|
-
type: 'boolean',
|
|
170
|
-
default: false,
|
|
171
|
-
describe: 'enable logging',
|
|
172
|
-
});
|
|
173
|
-
yargs.positional('loglevel', {
|
|
174
|
-
type: 'string',
|
|
175
|
-
default: undefined,
|
|
176
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
177
|
-
});
|
|
178
|
-
}, async (argv) => {
|
|
179
|
-
if (!configureLogger(argv)) {
|
|
180
|
-
return;
|
|
181
|
-
}
|
|
182
|
-
const projectPath = argv.path || '.';
|
|
183
|
-
let api = new ProjectImpl_1.default(projectPath);
|
|
184
|
-
const useHeadlessGenerator = argv.useHeadlessGenerator;
|
|
185
|
-
if (useHeadlessGenerator === 'true') {
|
|
186
|
-
api = new ProjectImpl_1.default(projectPath, false, !!useHeadlessGenerator);
|
|
187
|
-
}
|
|
188
|
-
await api.build();
|
|
189
|
-
await api.deploy();
|
|
190
|
-
const projectOverviewURL = await api.getProjectOverviewURL();
|
|
191
|
-
console.log({ 'applicationOverviewURL': projectOverviewURL });
|
|
192
|
-
})
|
|
193
|
-
.command('deployV2 [path]', 'Generate mta.yaml, generate zips and mtad.yaml file, generate mtar file and deploy it', (yargs) => {
|
|
194
|
-
yargs.positional('debug', {
|
|
195
|
-
type: 'boolean',
|
|
196
|
-
default: false,
|
|
197
|
-
describe: 'enable logging',
|
|
198
|
-
});
|
|
199
|
-
yargs.positional('loglevel', {
|
|
200
|
-
type: 'string',
|
|
201
|
-
default: undefined,
|
|
202
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
203
|
-
});
|
|
204
|
-
}, async (argv) => {
|
|
205
|
-
if (!configureLogger(argv)) {
|
|
206
|
-
return;
|
|
207
|
-
}
|
|
208
|
-
const projectPath = argv.path || '.';
|
|
209
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
210
|
-
await api.buildV2();
|
|
211
|
-
await api.deployV2();
|
|
212
|
-
const projectOverviewURL = await api.getProjectOverviewURL();
|
|
213
|
-
console.log({ 'applicationOverviewURL': projectOverviewURL });
|
|
214
|
-
})
|
|
215
|
-
.command('get-projectoverview-url [path]', 'get project overview url of deployed application', (yargs) => {
|
|
216
|
-
yargs.positional('debug', {
|
|
217
|
-
type: 'boolean',
|
|
218
|
-
default: false,
|
|
219
|
-
describe: 'enable logging',
|
|
220
|
-
});
|
|
221
|
-
yargs.positional('loglevel', {
|
|
222
|
-
type: 'string',
|
|
223
|
-
default: undefined,
|
|
224
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
225
|
-
});
|
|
226
|
-
}, async (argv) => {
|
|
227
|
-
if (!configureLogger(argv)) {
|
|
228
|
-
return;
|
|
229
|
-
}
|
|
230
|
-
const projectPath = argv.path || '.';
|
|
231
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
232
|
-
try {
|
|
233
|
-
const projectOverviewURL = await api.getProjectOverviewURL();
|
|
234
|
-
console.log({ 'applicationOverviewURL': projectOverviewURL });
|
|
235
|
-
}
|
|
236
|
-
catch (error) {
|
|
237
|
-
console.log({ 'errorCode': 1, 'errorMessage': error.message });
|
|
238
|
-
}
|
|
239
|
-
})
|
|
240
|
-
.command('get-application-deployment-summary [path]', 'get project summary url of deployed application', (yargs) => {
|
|
241
|
-
yargs.positional('debug', {
|
|
242
|
-
type: 'boolean',
|
|
243
|
-
default: false,
|
|
244
|
-
describe: 'enable logging',
|
|
245
|
-
});
|
|
246
|
-
yargs.positional('loglevel', {
|
|
247
|
-
type: 'string',
|
|
248
|
-
default: undefined,
|
|
249
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
250
|
-
});
|
|
251
|
-
}, async (argv) => {
|
|
252
|
-
if (!configureLogger(argv)) {
|
|
253
|
-
return;
|
|
254
|
-
}
|
|
255
|
-
const projectPath = argv.path || '.';
|
|
256
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
257
|
-
try {
|
|
258
|
-
const application_summary = await api.getApplicationDeploymentSummary();
|
|
259
|
-
console.log({ 'applicationSummary': application_summary });
|
|
260
|
-
}
|
|
261
|
-
catch (error) {
|
|
262
|
-
console.log({ 'errorCode': 1, 'errorMessage': error.message });
|
|
263
|
-
}
|
|
264
|
-
})
|
|
265
|
-
.command('run [path] [options..]', 'Run application locally. Currently, supported options are port <number> and open', (yargs) => {
|
|
266
|
-
yargs.positional('debug', {
|
|
267
|
-
type: 'boolean',
|
|
268
|
-
default: false,
|
|
269
|
-
describe: 'enable logging',
|
|
270
|
-
});
|
|
271
|
-
yargs.positional('loglevel', {
|
|
272
|
-
type: 'string',
|
|
273
|
-
default: undefined,
|
|
274
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
275
|
-
});
|
|
276
|
-
yargs.positional('launchpad', {
|
|
277
|
-
type: 'boolean',
|
|
278
|
-
default: undefined,
|
|
279
|
-
describe: 'only generate LCAP launchpad but not run CDS server',
|
|
280
|
-
});
|
|
281
|
-
}, async (argv) => {
|
|
282
|
-
if (!configureLogger(argv)) {
|
|
283
|
-
return;
|
|
284
|
-
}
|
|
285
|
-
const projectPath = argv.path || '.';
|
|
286
|
-
let option = argv.options || undefined;
|
|
287
|
-
if (argv.launchpad) {
|
|
288
|
-
option = (option || []).concat('launchpad');
|
|
289
|
-
}
|
|
290
|
-
const api = new ProjectImpl_1.default(projectPath);
|
|
291
|
-
await api.run(option);
|
|
292
|
-
})
|
|
293
|
-
.command('watch [path]', 'Auto build', (yargs) => {
|
|
294
|
-
yargs.positional('debug', {
|
|
295
|
-
type: 'boolean',
|
|
296
|
-
default: false,
|
|
297
|
-
describe: 'enable logging',
|
|
298
|
-
});
|
|
299
|
-
yargs.positional('loglevel', {
|
|
300
|
-
type: 'string',
|
|
301
|
-
default: undefined,
|
|
302
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
303
|
-
});
|
|
304
|
-
}, async (argv) => {
|
|
305
|
-
if (!configureLogger(argv)) {
|
|
306
|
-
return;
|
|
12
|
+
const commands = [{
|
|
13
|
+
command: 'list-items [path] [types..]',
|
|
14
|
+
description: 'Show project items',
|
|
15
|
+
log: {
|
|
16
|
+
start: 'Reading entities...',
|
|
17
|
+
},
|
|
18
|
+
}, {
|
|
19
|
+
command: 'get-detail-info [path] [type] [ref] [entityPath]',
|
|
20
|
+
description: 'Show detail information based on type and ref provided',
|
|
21
|
+
log: {
|
|
22
|
+
start: 'Getting detailed info of entities...',
|
|
23
|
+
},
|
|
24
|
+
positionals: [{
|
|
25
|
+
name: 'inherited',
|
|
26
|
+
type: 'boolean',
|
|
27
|
+
default: undefined,
|
|
28
|
+
describe: 'include the inherited properties for CDSEntity',
|
|
29
|
+
}],
|
|
30
|
+
}, {
|
|
31
|
+
command: 'show [path]',
|
|
32
|
+
description: 'Show project structure',
|
|
33
|
+
}, {
|
|
34
|
+
command: 'show-manifest [path]',
|
|
35
|
+
description: 'Show project manifest',
|
|
36
|
+
log: {
|
|
37
|
+
start: 'Gathering project info...',
|
|
38
|
+
},
|
|
39
|
+
}, {
|
|
40
|
+
command: 'build [path] [useHeadlessGenerator]',
|
|
41
|
+
description: 'Generate an mta.yaml file and build an mtar file',
|
|
42
|
+
}, {
|
|
43
|
+
command: 'buildV2 [path]',
|
|
44
|
+
description: 'Generate an mta.yaml, generate zips and mtad.yaml file',
|
|
45
|
+
}, {
|
|
46
|
+
command: 'deploy [path] [useHeadlessGenerator]',
|
|
47
|
+
description: 'Generate an mta.yaml file, build mtar file and deploy it',
|
|
48
|
+
}, {
|
|
49
|
+
command: 'deployV2 [path]',
|
|
50
|
+
description: 'Generate mta.yaml, generate zips and mtad.yaml file, generate mtar file and deploy it',
|
|
51
|
+
}, {
|
|
52
|
+
command: 'get-projectoverview-url [path]',
|
|
53
|
+
description: 'get project overview url of deployed application',
|
|
54
|
+
}, {
|
|
55
|
+
command: 'get-application-deployment-summary [path]',
|
|
56
|
+
description: 'get project summary url of deployed application',
|
|
57
|
+
}, {
|
|
58
|
+
command: 'run [path] [options..]',
|
|
59
|
+
description: 'Run application locally. Currently, supported options are port <number> and open',
|
|
60
|
+
positionals: [{
|
|
61
|
+
name: 'launchpad',
|
|
62
|
+
type: 'boolean',
|
|
63
|
+
default: undefined,
|
|
64
|
+
describe: 'only generate LCAP launchpad but not run CDS server',
|
|
65
|
+
}],
|
|
66
|
+
}, {
|
|
67
|
+
command: 'watch-items [path]',
|
|
68
|
+
description: 'Watch for item changes',
|
|
69
|
+
}, {
|
|
70
|
+
command: 'watch [path]',
|
|
71
|
+
description: 'Auto build',
|
|
72
|
+
}, {
|
|
73
|
+
command: 'get-project-info [path]',
|
|
74
|
+
description: 'show project info',
|
|
75
|
+
}, {
|
|
76
|
+
command: 'get-workspace-info [path]',
|
|
77
|
+
description: 'show workspace info',
|
|
78
|
+
}, {
|
|
79
|
+
command: 'get-modules-info [path]',
|
|
80
|
+
description: 'show modules info',
|
|
81
|
+
}, {
|
|
82
|
+
command: 'get-data-info [filePath]',
|
|
83
|
+
description: 'read and parse a data file',
|
|
84
|
+
}];
|
|
85
|
+
const generateParameters = function (command) {
|
|
86
|
+
const parameters = [];
|
|
87
|
+
const parts = command.command.split(' ');
|
|
88
|
+
if (parts.length > 0) {
|
|
89
|
+
for (let i = 1; i < parts.length; i++) {
|
|
90
|
+
let param = parts[i];
|
|
91
|
+
if (!!param) {
|
|
92
|
+
// Remove [], for example, [path]
|
|
93
|
+
param = param.substring(1, param.length - 1);
|
|
94
|
+
// Remove .., for example, types..
|
|
95
|
+
param = param.replace(/\.+$/, '');
|
|
96
|
+
parameters.push(param);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
307
99
|
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
const autoBuilder = await api.autoBuild();
|
|
311
|
-
await autoBuilder.start();
|
|
312
|
-
})
|
|
313
|
-
.command('watch-items [path]', 'Watch for item changes', (yargs) => {
|
|
314
|
-
yargs.positional('debug', {
|
|
315
|
-
type: 'boolean',
|
|
316
|
-
default: false,
|
|
317
|
-
describe: 'enable logging',
|
|
318
|
-
});
|
|
319
|
-
yargs.positional('loglevel', {
|
|
320
|
-
type: 'string',
|
|
321
|
-
default: undefined,
|
|
322
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
323
|
-
});
|
|
324
|
-
}, async (argv) => {
|
|
325
|
-
if (!configureLogger(argv)) {
|
|
326
|
-
return;
|
|
100
|
+
if (command.positionals) {
|
|
101
|
+
command.positionals.forEach(p => parameters.push(p.name));
|
|
327
102
|
}
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
artifact_management_base_1.getLogger().info(`One Read Items being fired for ${i} :events`);
|
|
337
|
-
const items = await itemWatcher.readItems();
|
|
338
|
-
artifact_management_base_1.getLogger().info(`Event Type -> ${event} : File - ${file}`);
|
|
339
|
-
artifact_management_base_1.getLogger().debug(JSON.stringify(items, null, 2));
|
|
340
|
-
};
|
|
341
|
-
const deferredCall = new CallDeferred_1.default({
|
|
342
|
-
func: printItems,
|
|
343
|
-
triggerDelay: 20,
|
|
344
|
-
maxTriggerDelay: 1000,
|
|
345
|
-
recallDelay: 2000,
|
|
103
|
+
return parameters;
|
|
104
|
+
};
|
|
105
|
+
(() => {
|
|
106
|
+
let yargsObject = yargs_1.default.scriptName('dev-project').usage('$0 <cmd> [path] [types..]');
|
|
107
|
+
commands.forEach(c => {
|
|
108
|
+
const id = c.command.split(' ')[0];
|
|
109
|
+
const params = generateParameters(c);
|
|
110
|
+
yargsObject = yargsObject.command(c.command, c.description, generateBuilder(c.positionals), generateHander(id, params, c.log));
|
|
346
111
|
});
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
112
|
+
yargsObject.help().strict().demandCommand().argv;
|
|
113
|
+
})();
|
|
114
|
+
}
|
|
115
|
+
exports.cli = cli;
|
|
116
|
+
function generateBuilder(positionals) {
|
|
117
|
+
return (yargs) => {
|
|
351
118
|
yargs.positional('debug', {
|
|
352
119
|
type: 'boolean',
|
|
353
120
|
default: false,
|
|
@@ -358,86 +125,35 @@ async function cli() {
|
|
|
358
125
|
default: undefined,
|
|
359
126
|
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
360
127
|
});
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
128
|
+
if (positionals) {
|
|
129
|
+
positionals.forEach(p => {
|
|
130
|
+
yargs.positional(p.name, {
|
|
131
|
+
type: p.type,
|
|
132
|
+
default: p.default,
|
|
133
|
+
describe: p.describe,
|
|
134
|
+
});
|
|
135
|
+
});
|
|
364
136
|
}
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
})
|
|
370
|
-
.command('get-workspace-info [path]', 'show workspace info', (yargs) => {
|
|
371
|
-
yargs.positional('debug', {
|
|
372
|
-
type: 'boolean',
|
|
373
|
-
default: false,
|
|
374
|
-
describe: 'enable logging',
|
|
375
|
-
});
|
|
376
|
-
yargs.positional('loglevel', {
|
|
377
|
-
type: 'string',
|
|
378
|
-
default: undefined,
|
|
379
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
380
|
-
});
|
|
381
|
-
}, async (argv) => {
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
function generateHander(command, params, logs) {
|
|
140
|
+
return async (argv) => {
|
|
382
141
|
if (!configureLogger(argv)) {
|
|
383
142
|
return;
|
|
384
143
|
}
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
const workspaceInfo = [];
|
|
388
|
-
const projectApis = await workspaceApi.getProjects();
|
|
389
|
-
for (const api of projectApis) {
|
|
390
|
-
const projectInfo = await api.getProjectInfo();
|
|
391
|
-
workspaceInfo.push(projectInfo);
|
|
144
|
+
if (logs) {
|
|
145
|
+
artifact_management_base_1.getLogger().info(logs.start);
|
|
392
146
|
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
yargs.positional('debug', {
|
|
397
|
-
type: 'boolean',
|
|
398
|
-
default: false,
|
|
399
|
-
describe: 'enable logging',
|
|
400
|
-
});
|
|
401
|
-
yargs.positional('loglevel', {
|
|
402
|
-
type: 'string',
|
|
403
|
-
default: undefined,
|
|
404
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
405
|
-
});
|
|
406
|
-
}, async (argv) => {
|
|
407
|
-
if (!configureLogger(argv)) {
|
|
408
|
-
return;
|
|
147
|
+
const commandParameters = [];
|
|
148
|
+
if (params) {
|
|
149
|
+
commandParameters.push(...params.map(param => argv[param]));
|
|
409
150
|
}
|
|
410
|
-
const
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
console.log(JSON.stringify(modulesInfo, undefined, 2));
|
|
414
|
-
})
|
|
415
|
-
.command('get-data-info [filePath]', 'read and parse a data file', (yargs) => {
|
|
416
|
-
yargs.positional('debug', {
|
|
417
|
-
type: 'boolean',
|
|
418
|
-
default: false,
|
|
419
|
-
describe: 'enable logging',
|
|
420
|
-
});
|
|
421
|
-
yargs.positional('loglevel', {
|
|
422
|
-
type: 'string',
|
|
423
|
-
default: undefined,
|
|
424
|
-
describe: 'can specify log level "off" | "fatal" | "error" | "warn" | "info" | "debug" | "silly"',
|
|
425
|
-
});
|
|
426
|
-
}, async (argv) => {
|
|
427
|
-
if (!configureLogger(argv)) {
|
|
428
|
-
return;
|
|
151
|
+
const result = await CommandExecutor_1.default.execute(command, ...commandParameters);
|
|
152
|
+
if (result) {
|
|
153
|
+
console.log(result);
|
|
429
154
|
}
|
|
430
|
-
|
|
431
|
-
const api = new ProjectImpl_1.default('.');
|
|
432
|
-
const data = await api.getDataInfo(filePath);
|
|
433
|
-
console.log(JSON.stringify(data, undefined, 2));
|
|
434
|
-
})
|
|
435
|
-
.help()
|
|
436
|
-
.strict()
|
|
437
|
-
.demandCommand()
|
|
438
|
-
.argv;
|
|
155
|
+
};
|
|
439
156
|
}
|
|
440
|
-
exports.cli = cli;
|
|
441
157
|
function configureLogger(argv) {
|
|
442
158
|
let logLevel = argv.loglevel;
|
|
443
159
|
if (logLevel) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProjectCLI.js","sourceRoot":"","sources":["../../../src/project-api/ProjectCLI.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ProjectCLI.js","sourceRoot":"","sources":["../../../src/project-api/ProjectCLI.ts"],"names":[],"mappings":";;;;;;;AAEA,kDAA0B;AAC1B,4EAA4E;AAC5E,wEAAgD;AAiBzC,KAAK,UAAU,GAAG;IACrB,MAAM,QAAQ,GAAe,CAAC;YAC1B,OAAO,EAAE,6BAA6B;YACtC,WAAW,EAAE,oBAAoB;YACjC,GAAG,EAAE;gBACD,KAAK,EAAE,qBAAqB;aAC/B;SACJ,EAAC;YACE,OAAO,EAAE,kDAAkD;YAC3D,WAAW,EAAE,wDAAwD;YACrE,GAAG,EAAE;gBACD,KAAK,EAAE,sCAAsC;aAChD;YACD,WAAW,EAAE,CAAC;oBACV,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE,SAAS;oBAClB,QAAQ,EAAE,gDAAgD;iBAC7D,CAAC;SACL,EAAC;YACE,OAAO,EAAE,aAAa;YACtB,WAAW,EAAE,wBAAwB;SACxC,EAAC;YACE,OAAO,EAAE,sBAAsB;YAC/B,WAAW,EAAE,uBAAuB;YACpC,GAAG,EAAE;gBACD,KAAK,EAAE,2BAA2B;aACrC;SACJ,EAAC;YACE,OAAO,EAAE,qCAAqC;YAC9C,WAAW,EAAE,kDAAkD;SAClE,EAAC;YACE,OAAO,EAAE,gBAAgB;YACzB,WAAW,EAAE,wDAAwD;SACxE,EAAC;YACE,OAAO,EAAE,sCAAsC;YAC/C,WAAW,EAAE,0DAA0D;SAC1E,EAAC;YACE,OAAO,EAAE,iBAAiB;YAC1B,WAAW,EAAE,uFAAuF;SACvG,EAAC;YACE,OAAO,EAAE,gCAAgC;YACzC,WAAW,EAAE,kDAAkD;SAClE,EAAC;YACE,OAAO,EAAE,2CAA2C;YACpD,WAAW,EAAE,iDAAiD;SACjE,EAAC;YACE,OAAO,EAAE,wBAAwB;YACjC,WAAW,EAAE,kFAAkF;YAC/F,WAAW,EAAE,CAAC;oBACV,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE,SAAS;oBAClB,QAAQ,EAAE,qDAAqD;iBAClE,CAAC;SACL,EAAC;YACE,OAAO,EAAE,oBAAoB;YAC7B,WAAW,EAAE,wBAAwB;SACxC,EAAC;YACE,OAAO,EAAE,cAAc;YACvB,WAAW,EAAE,YAAY;SAC5B,EAAC;YACE,OAAO,EAAE,yBAAyB;YAClC,WAAW,EAAE,mBAAmB;SACnC,EAAC;YACE,OAAO,EAAE,2BAA2B;YACpC,WAAW,EAAE,qBAAqB;SACrC,EAAC;YACE,OAAO,EAAE,yBAAyB;YAClC,WAAW,EAAE,mBAAmB;SACnC,EAAC;YACE,OAAO,EAAE,0BAA0B;YACnC,WAAW,EAAE,4BAA4B;SAC5C,CAAC,CAAC;IAEH,MAAM,kBAAkB,GAAG,UAAS,OAAiB;QACjD,MAAM,UAAU,GAAa,EAAE,CAAC;QAEhC,MAAM,KAAK,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACzC,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;YAClB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACnC,IAAI,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;gBACrB,IAAI,CAAC,CAAC,KAAK,EAAE;oBACT,iCAAiC;oBACjC,KAAK,GAAG,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;oBAC7C,kCAAkC;oBAClC,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;oBAClC,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;iBAC1B;aACJ;SACJ;QAED,IAAI,OAAO,CAAC,WAAW,EAAE;YACrB,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;SAC7D;QAED,OAAO,UAAU,CAAC;IACtB,CAAC,CAAC;IAEF,CAAC,GAAG,EAAE;QACF,IAAI,WAAW,GAAG,eAAK,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAErF,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;YACjB,MAAM,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,MAAM,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC;YACrC,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,WAAW,EAAE,eAAe,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,cAAc,CAAC,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QACnI,CAAC,CAAC,CAAC;QAEH,WAAW,CAAC,IAAI,EAAE,CAAC,MAAM,EAAE,CAAC,aAAa,EAAE,CAAC,IAAI,CAAC;IACrD,CAAC,CAAC,EAAE,CAAC;AACT,CAAC;AA9GD,kBA8GC;AAED,SAAS,eAAe,CAAC,WAKtB;IACC,OAAO,CAAC,KAAU,EAAE,EAAE;QAClB,KAAK,CAAC,UAAU,CAAC,OAAO,EAAE;YACtB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,QAAQ,EAAE,gBAAgB;SAC7B,CAAC,CAAC;QACH,KAAK,CAAC,UAAU,CAAC,UAAU,EAAE;YACzB,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,uFAAuF;SACpG,CAAC,CAAC;QAEH,IAAI,WAAW,EAAE;YACb,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;gBACpB,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,EAAE;oBACrB,IAAI,EAAE,CAAC,CAAC,IAAI;oBACZ,OAAO,EAAE,CAAC,CAAC,OAAO;oBAClB,QAAQ,EAAE,CAAC,CAAC,QAAQ;iBACvB,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;SACN;IACL,CAAC,CAAC;AACN,CAAC;AAED,SAAS,cAAc,CAAC,OAAe,EAAE,MAAiB,EAAE,IAAU;IAClE,OAAO,KAAK,EAAC,IAAS,EAAE,EAAE;QACtB,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,EAAE;YACxB,OAAO;SACV;QAED,IAAI,IAAI,EAAE;YACN,oCAAS,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAChC;QAED,MAAM,iBAAiB,GAAG,EAAE,CAAC;QAC7B,IAAI,MAAM,EAAE;YACR,iBAAiB,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;SAC/D;QACD,MAAM,MAAM,GAAG,MAAM,yBAAe,CAAC,OAAO,CAAC,OAAO,EAAE,GAAG,iBAAiB,CAAC,CAAC;QAE5E,IAAI,MAAM,EAAE;YACR,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;SACvB;IACL,CAAC,CAAC;AACN,CAAC;AAED,SAAS,eAAe,CAAC,IAIA;IACrB,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAkB,CAAC;IACvC,IAAI,QAAQ,EAAE;QACV,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,EAAE;YAC5B,OAAO,CAAC,KAAK,CAAC,yEAAyE,CAAC,CAAC;YACzF,OAAO,KAAK,CAAC;SAChB;KACJ;SAAM;QACH,QAAQ,GAAG,MAAM,CAAC;KACrB;IACD,mEAAmE;IACnE,IAAI,IAAI,CAAC,KAAK,EAAE;QACZ,2CAAgB,CAAC,2BAA2B,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;KAChE;SAAM;QACH,0FAA0F;QAC1F,2CAAgB,CAAC,2BAA2B,CAAC,QAAQ,CAAC,CAAC;KAC1D;IACD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAS,eAAe,CAAC,QAAe;IACpC,MAAM,MAAM,GAAG,6BAA6B,CAAC;IAC7C,OAAO,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACjC,CAAC;AAED,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 412.38 204"><defs><style>.cls-1,.cls-2{fill-rule:evenodd;}.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#fff;}.cls-3{fill:#1e5fbb;}</style><linearGradient id="linear-gradient" x1="206.19" x2="206.19" y2="204" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00b8f1"/><stop offset="0.02" stop-color="#01b6f0"/><stop offset="0.31" stop-color="#0d90d9"/><stop offset="0.58" stop-color="#1775c8"/><stop offset="0.82" stop-color="#1c65bf"/><stop offset="1" stop-color="#1e5fbb"/></linearGradient></defs><title>SAP_grad_RZeichenfläche 1</title><polyline class="cls-1" points="0 204 208.41 204 412.38 0 0 0 0 204"/><path class="cls-2" d="M244.73,38.36l-40.6,0v96.52L168.67,38.33H133.51l-30.27,80.72C100,98.7,79,91.67,62.4,86.4,51.46,82.89,39.85,77.72,40,72c.09-4.68,6.23-9,18.38-8.38,8.17.43,15.37,1.09,29.71,8l14.1-24.55C89.06,40.42,71,36.21,56.17,36.19h-.09c-17.28,0-31.68,5.6-40.6,14.83A34.23,34.23,0,0,0,5.77,74.7C5.54,87.15,10.11,96,19.71,103c8.1,5.94,18.46,9.79,27.6,12.62,11.27,3.49,20.47,6.53,20.36,13A9.57,9.57,0,0,1,65,135c-2.81,2.9-7.13,4-13.09,4.1-11.49.24-20-1.56-33.61-9.59L5.77,154.42a93.77,93.77,0,0,0,46,12.22l2.11,0c14.24-.25,25.74-4.31,34.92-11.71.53-.41,1-.84,1.49-1.28L86.17,164.5H123l6.19-18.82a67.46,67.46,0,0,0,21.68,3.43,68.33,68.33,0,0,0,21.16-3.25l6,18.64h60.14v-39h13.11c31.71,0,50.46-16.15,50.46-43.2C301.74,52.19,283.52,38.36,244.73,38.36ZM150.91,121a36.93,36.93,0,0,1-13-2.28l12.87-40.59H151l12.65,40.71A38.5,38.5,0,0,1,150.91,121Zm96.2-23.33h-8.94V64.91h8.94c11.93,0,21.44,4,21.44,16.14,0,12.6-9.51,16.57-21.44,16.57"/><path class="cls-3" d="M257.84,190.58a10.71,10.71,0,1,1,10.75,11A10.71,10.71,0,0,1,257.84,190.58Zm10.75,13.23a13.2,13.2,0,1,0-13.41-13.23A13.17,13.17,0,0,0,268.59,203.81Zm-2.79-12.19h2.65l4,6.59h2.61l-4.36-6.7c2.26-.25,4-1.46,4-4.19,0-3-1.78-4.32-5.36-4.32h-5.8v15.21h2.3Zm0-2V185h3.14c1.59,0,3.29.34,3.29,2.23,0,2.37-1.73,2.48-3.66,2.48Z"/></svg>
|
|
Binary file
|