@deot/dev-cli 2.6.0 → 2.6.2
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +9 -9
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.
|
|
3
|
+
"version": "2.6.2",
|
|
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.
|
|
24
|
-
"@deot/dev-builder": "^2.6.
|
|
25
|
-
"@deot/dev-linker": "^2.6.
|
|
26
|
-
"@deot/dev-shared": "^2.6.
|
|
27
|
-
"@deot/dev-tester": "^2.6.
|
|
28
|
-
"@deot/dev-releaser": "^2.6.
|
|
29
|
-
"@deot/dev-updater": "^2.6.
|
|
23
|
+
"@deot/dev-adder": "^2.6.2",
|
|
24
|
+
"@deot/dev-builder": "^2.6.2",
|
|
25
|
+
"@deot/dev-linker": "^2.6.2",
|
|
26
|
+
"@deot/dev-shared": "^2.6.2",
|
|
27
|
+
"@deot/dev-tester": "^2.6.2",
|
|
28
|
+
"@deot/dev-releaser": "^2.6.2",
|
|
29
|
+
"@deot/dev-updater": "^2.6.2",
|
|
30
30
|
"commander": "^11.1.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"cross-env": "^7.0.3",
|
|
34
|
-
"@deot/dev-test": "^2.6.
|
|
34
|
+
"@deot/dev-test": "^2.6.2"
|
|
35
35
|
},
|
|
36
36
|
"bin": {
|
|
37
37
|
"ddc": "bin/cli.js"
|