Skip to content

Commit 2415450

Browse files
committed
publish 1.6.2 修复命令行工具失效问题
1 parent b689d62 commit 2415450

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/NPM_PUBLISH_VERSION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ lerna version [bump]
88
99
```
1010

11-
1.6.1
11+
1.6.2

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
### 1.6.2
3+
4+
[pinus] 修复命令行工具失效问题
25

36
### 1.6.1
47

packages/pinus/bin/pinus.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as path from 'path';
99
import { COMMAND_ERROR } from './utils/constants';
1010
import { version } from './utils/utils';
1111
import { isFunction } from 'util';
12-
import { program } from 'commander';
12+
import * as program from 'commander';
1313

1414
program.version(version);
1515

packages/pinus/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"dependencies": {
5252
"async": "^3.0.0",
5353
"cliff": "^0.1.10",
54-
"commander": "^8.0.0",
54+
"commander": "3.0.2",
5555
"crc": "^3.5.0",
5656
"eyes": "^0.1.8",
5757
"mkdirp": "^1.0.4",

yarn.lock

+6-1
Original file line numberDiff line numberDiff line change
@@ -2545,7 +2545,7 @@ command-exists@^1.2.8:
25452545
resolved "https://registry.npm.taobao.org/command-exists/download/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69"
25462546
integrity sha1-xQclrzgIyKsCYP1gsB+/oluVT2k=
25472547

2548-
commander@*, commander@^8.0.0:
2548+
commander@*:
25492549
version "8.3.0"
25502550
resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
25512551
integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
@@ -2557,6 +2557,11 @@ commander@2.9.0:
25572557
dependencies:
25582558
graceful-readlink ">= 1.0.0"
25592559

2560+
commander@3.0.2:
2561+
version "3.0.2"
2562+
resolved "https://registry.npmmirror.com/commander/download/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e"
2563+
integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==
2564+
25602565
commander@^2.12.1, commander@^2.20.0, commander@^2.6.0:
25612566
version "2.20.3"
25622567
resolved "https://registry.nlark.com/commander/download/commander-2.20.3.tgz?cache=0&sync_timestamp=1624609539421&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"

0 commit comments

Comments
 (0)