@m2c2kit/cli 0.3.16 → 0.3.17
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.js +9 -5
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -357,16 +357,20 @@ function getUsage() {
|
|
|
357
357
|
m2c2kit CLI
|
|
358
358
|
|
|
359
359
|
${colors.blue("Commands:")}
|
|
360
|
-
m2 new [name]
|
|
360
|
+
m2 new [name] Create a new m2c2kit project.
|
|
361
361
|
|
|
362
362
|
Arguments:
|
|
363
|
-
name
|
|
363
|
+
name The name of the new project.
|
|
364
364
|
|
|
365
365
|
Options:
|
|
366
|
-
-g, --skipGit
|
|
367
|
-
-m, --module
|
|
366
|
+
-g, --skipGit Skip initializing a git repository.
|
|
367
|
+
-m, --module Create a m2c2kit assessment module (default is application).
|
|
368
368
|
|
|
369
|
-
m2
|
|
369
|
+
m2 static-site Create a static website containing m2c2kit assessments.
|
|
370
|
+
|
|
371
|
+
Options:
|
|
372
|
+
--config <file.mjs> The name of the configuration file, must end in .mjs
|
|
373
|
+
--init Create site-config.mjs file in the current directory.
|
|
370
374
|
`;
|
|
371
375
|
}
|
|
372
376
|
/** Parse the command line. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m2c2kit/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"description": "Command line interface to create new m2c2kit apps",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://m2c2-project.github.io/m2c2kit",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/core": "^18.1.
|
|
29
|
-
"@angular-devkit/schematics": "^18.1.
|
|
30
|
-
"@inquirer/prompts": "5.
|
|
31
|
-
"@m2c2kit/schematics": "0.1.
|
|
32
|
-
"@schematics/angular": "^18.1.
|
|
28
|
+
"@angular-devkit/core": "^18.1.3",
|
|
29
|
+
"@angular-devkit/schematics": "^18.1.3",
|
|
30
|
+
"@inquirer/prompts": "5.3.8",
|
|
31
|
+
"@m2c2kit/schematics": "0.1.17",
|
|
32
|
+
"@schematics/angular": "^18.1.3",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"symbol-observable": "4.0.0",
|
|
35
35
|
"yargs-parser": "21.1.1"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/inquirer": "9.0.7",
|
|
39
39
|
"rimraf": "6.0.1",
|
|
40
|
-
"typescript": "5.5.
|
|
40
|
+
"typescript": "5.5.4"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=18"
|