Skip to content

Commit 714d15e

Browse files
committed
fix: ran oclif generator
1 parent 9849b51 commit 714d15e

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
- checkout
1313
- restore_cache: &restore_cache
1414
keys:
15-
- v0-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
16-
- v0-yarn-{{checksum ".circleci/config.yml"}}
15+
- v1-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
16+
- v1-yarn-{{checksum ".circleci/config.yml"}}
1717
- run: .circleci/greenkeeper
18-
- run: yarn add -D nyc@11 @oclif/nyc-config@0 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
19+
- run: ./bin/run --help
1920
- run: |
2021
mkdir -p reports
2122
$NYC yarn test --reporter mocha-junit-reporter
2223
$NYC report --reporter text-lcov > coverage.lcov
2324
curl -s https://codecov.io/bash | bash
24-
- run: yarn exec commitlint -- -x @commitlint/config-conventional --from origin/master
2525
- store_test_results: &store_test_results
2626
path: ~/cli/reports
2727
node-8:
@@ -34,13 +34,13 @@ jobs:
3434
- add_ssh_keys
3535
- checkout
3636
- restore_cache: *restore_cache
37-
- run: yarn global add @oclif/semantic-release@1 semantic-release@12
37+
- run: yarn global add @oclif/semantic-release@2 semantic-release@15
3838
- run: yarn --frozen-lockfile
3939
- run: |
4040
export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH
4141
semantic-release -e @oclif/semantic-release
4242
- save_cache:
43-
key: v0-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
43+
key: v1-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
4444
paths:
4545
- ~/cli/node_modules
4646
- /usr/local/share/.cache/yarn

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
/tmp
66
lib/
77
node_modules/
8+
package-lock.json

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cache:
66

77
install:
88
- ps: Install-Product node $env:nodejs_version x64
9-
- yarn add -D nyc@11 @oclif/nyc-config@0
9+
- yarn add -D nyc@11 @oclif/nyc-config@1
1010
test_script:
1111
- .\node_modules\.bin\nyc --nycrc-path node_modules/@oclif/nyc-config/.nycrc yarn test
1212
after_test:

tsconfig.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
"forceConsistentCasingInFileNames": true,
55
"importHelpers": true,
66
"module": "commonjs",
7-
"noUnusedLocals": true,
8-
"noUnusedParameters": true,
97
"outDir": "./lib",
108
"pretty": true,
119
"rootDirs": [

0 commit comments

Comments
 (0)