@deot/dev-cli 2.6.1 → 2.7.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/dist/index.cjs CHANGED
@@ -72,7 +72,7 @@ addOptions(
72
72
  Tester__namespace.run
73
73
  );
74
74
  addOptions(
75
- commander.program.command("update").alias("u").description("update devDependencies & dependencies").option("--no-dry-run [boolean]", "No Dry Run").option("--no-commit [boolean]", "No Commit").option("--no-push [boolean]", "No Push").option("--no-test [boolean]", "No Test").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor"),
75
+ commander.program.command("update").alias("u").description("update devDependencies & dependencies").option("--no-dry-run [boolean]", "No Dry Run").option("--no-commit [boolean]", "No Commit").option("--no-push [boolean]", "No Push").option("--no-test [boolean]", "No Test").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor").option("--all [boolean]", "Update All Package"),
76
76
  Updater__namespace.run
77
77
  );
78
78
  commander.program.parse(process.argv);
package/dist/index.js CHANGED
@@ -44,7 +44,7 @@ addOptions(
44
44
  Tester.run
45
45
  );
46
46
  addOptions(
47
- program.command("update").alias("u").description("update devDependencies & dependencies").option("--no-dry-run [boolean]", "No Dry Run").option("--no-commit [boolean]", "No Commit").option("--no-push [boolean]", "No Push").option("--no-test [boolean]", "No Test").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor"),
47
+ program.command("update").alias("u").description("update devDependencies & dependencies").option("--no-dry-run [boolean]", "No Dry Run").option("--no-commit [boolean]", "No Commit").option("--no-push [boolean]", "No Push").option("--no-test [boolean]", "No Test").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor").option("--all [boolean]", "Update All Package"),
48
48
  Updater.run
49
49
  );
50
50
  program.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-cli",
3
- "version": "2.6.1",
3
+ "version": "2.7.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,18 +20,18 @@
20
20
  "access": "public"
21
21
  },
22
22
  "dependencies": {
23
- "@deot/dev-adder": "^2.6.0",
24
- "@deot/dev-builder": "^2.6.1",
25
- "@deot/dev-linker": "^2.6.0",
26
- "@deot/dev-shared": "^2.6.0",
27
- "@deot/dev-tester": "^2.6.0",
28
- "@deot/dev-releaser": "^2.6.0",
29
- "@deot/dev-updater": "^2.6.0",
23
+ "@deot/dev-adder": "^2.7.0",
24
+ "@deot/dev-builder": "^2.7.0",
25
+ "@deot/dev-linker": "^2.7.0",
26
+ "@deot/dev-shared": "^2.7.0",
27
+ "@deot/dev-tester": "^2.7.0",
28
+ "@deot/dev-releaser": "^2.7.0",
29
+ "@deot/dev-updater": "^2.7.0",
30
30
  "commander": "^11.1.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "cross-env": "^7.0.3",
34
- "@deot/dev-test": "^2.6.0"
34
+ "@deot/dev-test": "^2.7.0"
35
35
  },
36
36
  "bin": {
37
37
  "ddc": "bin/cli.js"