Skip to content

Commit

Permalink
fix: updater fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Apr 9, 2018
1 parent 9b3e33b commit c65c556
Show file tree
Hide file tree
Showing 11 changed files with 321 additions and 641 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
node-latest: &test
docker:
- image: node:latest
- image: oclif/release:0.0.0-9.11.1
working_directory: ~/cli
environment:
NYC: "yarn exec nyc -- --nycrc-path node_modules/@oclif/nyc-config/.nycrc"
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:
- add_ssh_keys
- checkout
- restore_cache: *restore_cache
- run: yarn global add @oclif/semantic-release@2 semantic-release@15
- run: yarn global add @oclif/semantic-release@3 semantic-release@15
- run: yarn --frozen-lockfile
- run: |
export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH
Expand All @@ -51,11 +51,11 @@ workflows:
"@oclif/plugin-update":
jobs:
- node-latest
- node-8
#- node-8
- release:
context: org-global
filters:
branches: {only: master}
requires:
- node-latest
- node-8
#- node-8
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ npm install -g @oclif/plugin-update
$ oclif-example COMMAND
running command...
$ oclif-example (-v|--version|version)
@oclif/plugin-update/1.1.0 linux-x64 node-v9.11.1
@oclif/plugin-update/1.1.0 darwin-x64 node-v9.11.1
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand Down
19 changes: 13 additions & 6 deletions examples/s3-update-example-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s3-update-example-cli",
"version": "0.0.0",
"version": "2.0.0",
"author": "Jeff Dickey @jdxcode",
"bin": {
"s3-example": "./bin/run"
Expand All @@ -9,13 +9,14 @@
"dependencies": {
"@oclif/command": "^1.4.9",
"@oclif/config": "^1.4.7",
"@oclif/plugin-help": "^1.2.3"
"@oclif/plugin-help": "^1.2.3",
"@oclif/plugin-update": "/Users/jdickey/src/github.com/oclif/plugin-update/oclif-plugin-update-1.1.0.tgz"
},
"devDependencies": {
"@oclif/dev-cli": "^1.9.5",
"@oclif/dev-cli": "^1.9.10",
"@types/node": "^9.6.2",
"aws-sdk": "^2.222.1",
"globby": "^8.0.1",
"pkg": "^4.3.1",
"ts-node": "5",
"tslib": "^1.9.0",
"typescript": "^2.8.1"
Expand Down Expand Up @@ -44,8 +45,14 @@
},
"node": {
"version": "8.11.1",
"xtargets": [ "darwin-x64", "linux-x64", "win32-x64" ],
"targets": [ "darwin-x64" ]
"xtargets": [
"darwin-x64",
"linux-x64",
"win32-x64"
],
"targets": [
"darwin-x64"
]
}
},
"plugins": [
Expand Down
Loading

0 comments on commit c65c556

Please sign in to comment.