Skip to content

Commit

Permalink
fix: cache bust
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 2, 2018
1 parent 6ca706d commit 5053299
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- checkout
- restore_cache: &restore_cache
keys:
- v0-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
- v0-yarn-{{checksum ".circleci/config.yml"}}
- v1-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
- v1-yarn-{{checksum ".circleci/config.yml"}}
- run: .circleci/greenkeeper
- run: yarn add -D nyc@11 @anycli/nyc-config@0 mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6
- run: ./bin/run --help
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH
semantic-release -e @anycli/semantic-release
- save_cache:
key: v0-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
key: v1-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
paths:
- ~/cli/node_modules
- /usr/local/share/.cache/yarn
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"@anycli/config": "^0.3.0",
"@anycli/dev-cli": "^0.1.3",
"@anycli/engine": "^0.3.1",
"@anycli/plugin-help": "^0.4.3",
"@anycli/plugin-version": "^0.1.29",
"@anycli/plugin-help": "^0.4.5",
"@anycli/plugin-version": "^0.1.30",
"@anycli/test": "^0.10.3",
"@anycli/tslint": "^0.2.2",
"@types/chai": "^4.1.2",
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@
widest-line "^2.0.0"
wrap-ansi "^3.0.1"

"@anycli/plugin-help@^0.4.3":
version "0.4.3"
resolved "https://registry.yarnpkg.com/@anycli/plugin-help/-/plugin-help-0.4.3.tgz#bc3dfafefc813cdf9877272125c60bd40238e431"
"@anycli/plugin-help@^0.4.5":
version "0.4.5"
resolved "https://registry.npmjs.org/@anycli/plugin-help/-/plugin-help-0.4.5.tgz#1d4693bd55a1c892aa80a0cb53039ae953814b47"
dependencies:
"@anycli/command" "^0.3.7"
"@anycli/screen" "^0.0.3"
Expand Down Expand Up @@ -121,9 +121,9 @@
"@anycli/command" "^0.3.5"
cli-ux "^3.3.12"

"@anycli/plugin-version@^0.1.29":
version "0.1.29"
resolved "https://registry.yarnpkg.com/@anycli/plugin-version/-/plugin-version-0.1.29.tgz#954759841472d875578b5486d2b828e2f928795c"
"@anycli/plugin-version@^0.1.30":
version "0.1.30"
resolved "https://registry.npmjs.org/@anycli/plugin-version/-/plugin-version-0.1.30.tgz#0c80e4c856f4a3249a5d56b4c9d553b20c514198"
dependencies:
"@anycli/command" "^0.3.7"
cli-ux "^3.3.13"
Expand Down

0 comments on commit 5053299

Please sign in to comment.