@deot/dev-cli 2.8.2 → 2.9.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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +12 -12
package/dist/index.cjs
CHANGED
|
@@ -36,7 +36,7 @@ const Linker__namespace = /*#__PURE__*/_interopNamespaceDefault(Linker);
|
|
|
36
36
|
const Dever__namespace = /*#__PURE__*/_interopNamespaceDefault(Dever);
|
|
37
37
|
const Updater__namespace = /*#__PURE__*/_interopNamespaceDefault(Updater);
|
|
38
38
|
|
|
39
|
-
const require$1 = node_module.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)));
|
|
39
|
+
const require$1 = node_module.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)));
|
|
40
40
|
commander.program.version(require$1("../package.json").version);
|
|
41
41
|
const defaultOptions = [
|
|
42
42
|
// new Option('--workspace <string>', 'Workspace', 'packages'),
|
|
@@ -73,7 +73,7 @@ addOptions(
|
|
|
73
73
|
Tester__namespace.run
|
|
74
74
|
);
|
|
75
75
|
addOptions(
|
|
76
|
-
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
|
+
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("--no-change-log [boolean]", "No Change Log").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor").option("--all [boolean]", "Update All Package"),
|
|
77
77
|
Updater__namespace.run
|
|
78
78
|
);
|
|
79
79
|
commander.program.parse(process.argv);
|
package/dist/index.js
CHANGED
|
@@ -45,7 +45,7 @@ addOptions(
|
|
|
45
45
|
Tester.run
|
|
46
46
|
);
|
|
47
47
|
addOptions(
|
|
48
|
-
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
|
+
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("--no-change-log [boolean]", "No Change Log").option("--patch [boolean]", "Patch").option("--major [boolean]", "Major").option("--minor [boolean]", "Minor").option("--all [boolean]", "Update All Package"),
|
|
49
49
|
Updater.run
|
|
50
50
|
);
|
|
51
51
|
program.parse(process.argv);
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deot/dev-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"import": "./dist/index.js",
|
|
10
|
-
"require": "./dist/index.cjs"
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@deot/dev-adder": "^2.
|
|
24
|
-
"@deot/dev-builder": "^2.
|
|
25
|
-
"@deot/dev-linker": "^2.
|
|
26
|
-
"@deot/dev-shared": "^2.
|
|
27
|
-
"@deot/dev-tester": "^2.
|
|
28
|
-
"@deot/dev-releaser": "^2.
|
|
29
|
-
"@deot/dev-updater": "^2.
|
|
30
|
-
"commander": "^
|
|
23
|
+
"@deot/dev-adder": "^2.9.0",
|
|
24
|
+
"@deot/dev-builder": "^2.9.0",
|
|
25
|
+
"@deot/dev-linker": "^2.9.0",
|
|
26
|
+
"@deot/dev-shared": "^2.9.0",
|
|
27
|
+
"@deot/dev-tester": "^2.9.0",
|
|
28
|
+
"@deot/dev-releaser": "^2.9.0",
|
|
29
|
+
"@deot/dev-updater": "^2.9.0",
|
|
30
|
+
"commander": "^13.1.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"cross-env": "^7.0.3",
|
|
34
|
-
"@deot/dev-test": "^2.
|
|
34
|
+
"@deot/dev-test": "^2.9.0"
|
|
35
35
|
},
|
|
36
36
|
"bin": {
|
|
37
37
|
"ddc": "bin/cli.js"
|