Skip to content

Commit 9898b8e

Browse files
committed
fix: use new semantic-release
1 parent 49b894b commit 9898b8e

File tree

3 files changed

+43
-17
lines changed

3 files changed

+43
-17
lines changed

.circleci/config.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ jobs:
1515
- v1-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
1616
- v1-yarn-{{checksum ".circleci/config.yml"}}
1717
- run: .circleci/greenkeeper
18-
- run: yarn add -D nyc@11 @oclif/nyc-config@1 mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6
18+
- run: yarn add -D nyc@11 @oclif/nyc-config@1 mocha-junit-reporter@1
1919
- run: ./bin/run --help
2020
- run: |
2121
mkdir -p reports
2222
$NYC yarn test --reporter mocha-junit-reporter
2323
$NYC report --reporter text-lcov > coverage.lcov
2424
curl -s https://codecov.io/bash | bash
25-
- run: yarn exec commitlint -- -x @commitlint/config-conventional --from origin/master
2625
- store_test_results: &store_test_results
2726
path: ~/cli/reports
2827
node-8:
@@ -35,7 +34,7 @@ jobs:
3534
- add_ssh_keys
3635
- checkout
3736
- restore_cache: *restore_cache
38-
- run: yarn global add @oclif/semantic-release@1 semantic-release@12
37+
- run: yarn global add @oclif/semantic-release@2 semantic-release@15
3938
- run: yarn --frozen-lockfile
4039
- run: |
4140
export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"bugs": "https://github.com/oclif/plugin-plugins/issues",
77
"dependencies": {
88
"@heroku-cli/color": "^1.1.3",
9-
"@oclif/command": "^1.4.2",
9+
"@oclif/command": "^1.4.4",
1010
"chalk": "^2.3.2",
11-
"cli-ux": "^3.3.25",
11+
"cli-ux": "^3.3.26",
1212
"debug": "^3.1.0",
1313
"fs-extra": "^5.0.0",
1414
"http-call": "^5.0.2",
@@ -19,10 +19,10 @@
1919
"yarn": "^1.5.1"
2020
},
2121
"devDependencies": {
22-
"@oclif/config": "^1.3.59",
23-
"@oclif/dev-cli": "^1.4.0",
22+
"@oclif/config": "^1.3.60",
23+
"@oclif/dev-cli": "^1.4.2",
2424
"@oclif/errors": "^1.0.2",
25-
"@oclif/plugin-help": "^1.1.6",
25+
"@oclif/plugin-help": "^1.2.0",
2626
"@oclif/test": "^1.0.1",
2727
"@oclif/tslint": "^1.0.2",
2828
"@types/chai": "^4.1.2",

yarn.lock

+36-9
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,28 @@
3636
"@oclif/parser" "^3.2.9"
3737
semver "^5.5.0"
3838

39+
"@oclif/command@^1.4.4":
40+
version "1.4.4"
41+
resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.4.4.tgz#12188c81ac11cd74c30aeba4b3c57380f15d8d54"
42+
dependencies:
43+
"@oclif/errors" "^1.0.2"
44+
"@oclif/parser" "^3.2.9"
45+
debug "^3.1.0"
46+
semver "^5.5.0"
47+
3948
"@oclif/config@^1.3.59":
4049
version "1.3.59"
4150
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.3.59.tgz#10cc39757654850458b2d3f899155af2e069deb5"
4251

43-
"@oclif/dev-cli@^1.4.0":
44-
version "1.4.0"
45-
resolved "https://registry.yarnpkg.com/@oclif/dev-cli/-/dev-cli-1.4.0.tgz#b8513caf54f42e1e7dabf5238ca22b3b7d3fdeab"
52+
"@oclif/config@^1.3.60":
53+
version "1.3.60"
54+
resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.3.60.tgz#e5e1b1cf14d68dd55c489bc5f76594073dec0568"
55+
dependencies:
56+
debug "^3.1.0"
57+
58+
"@oclif/dev-cli@^1.4.2":
59+
version "1.4.2"
60+
resolved "https://registry.yarnpkg.com/@oclif/dev-cli/-/dev-cli-1.4.2.tgz#cd849b2f634606c9dda71caf6d32e5bf31611c6a"
4661
dependencies:
4762
"@oclif/command" "^1.4.2"
4863
"@oclif/config" "^1.3.59"
@@ -81,6 +96,18 @@
8196
widest-line "^2.0.0"
8297
wrap-ansi "^3.0.1"
8398

99+
"@oclif/plugin-help@^1.2.0":
100+
version "1.2.0"
101+
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-1.2.0.tgz#26163d6561783779ad4ac174e596b3e3e186155e"
102+
dependencies:
103+
"@oclif/command" "^1.4.4"
104+
chalk "^2.3.2"
105+
indent-string "^3.2.0"
106+
lodash.template "^4.4.0"
107+
string-width "^2.1.1"
108+
widest-line "^2.0.0"
109+
wrap-ansi "^3.0.1"
110+
84111
"@oclif/screen@^1.0.2":
85112
version "1.0.2"
86113
resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.2.tgz#c9d7c84b0ea60ecec8dd7a9b22c012ba9967aed8"
@@ -363,15 +390,15 @@ clean-stack@^1.3.0:
363390
version "1.3.0"
364391
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31"
365392

366-
cli-ux@^3.3.25:
367-
version "3.3.25"
368-
resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-3.3.25.tgz#2bc2a114149afb3b61c614bd47d204877eff90d2"
393+
cli-ux@^3.3.26:
394+
version "3.3.26"
395+
resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-3.3.26.tgz#998be26eb4bcd2a29a740a9bea2a497071461a7a"
369396
dependencies:
370397
"@heroku/linewrap" "^1.0.0"
371398
"@oclif/screen" "^1.0.2"
372-
ansi-styles "^3.2.0"
399+
ansi-styles "^3.2.1"
373400
cardinal "^1.0.0"
374-
chalk "^2.3.0"
401+
chalk "^2.3.2"
375402
clean-stack "^1.3.0"
376403
extract-stack "^1.0.0"
377404
fs-extra "^5.0.0"
@@ -380,7 +407,7 @@ cli-ux@^3.3.25:
380407
password-prompt "^1.0.4"
381408
semver "^5.5.0"
382409
strip-ansi "^4.0.0"
383-
supports-color "^5.1.0"
410+
supports-color "^5.3.0"
384411

385412
collection-visit@^1.0.0:
386413
version "1.0.0"

0 commit comments

Comments
 (0)