@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.
Files changed (2) hide show
  1. package/dist/index.js +9 -5
  2. 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] Create a new m2c2kit project.
360
+ m2 new [name] Create a new m2c2kit project.
361
361
 
362
362
  Arguments:
363
- name The name of the new project.
363
+ name The name of the new project.
364
364
 
365
365
  Options:
366
- -g, --skipGit Skip initializing a git repository.
367
- -m, --module Create a m2c2kit assessment module (default is application).
366
+ -g, --skipGit Skip initializing a git repository.
367
+ -m, --module Create a m2c2kit assessment module (default is application).
368
368
 
369
- m2 zip Package a built assessment module into a zip file.
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.16",
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.0",
29
- "@angular-devkit/schematics": "^18.1.0",
30
- "@inquirer/prompts": "5.1.3",
31
- "@m2c2kit/schematics": "0.1.16",
32
- "@schematics/angular": "^18.1.0",
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.3"
40
+ "typescript": "5.5.4"
41
41
  },
42
42
  "engines": {
43
43
  "node": ">=18"