Skip to content

Commit

Permalink
chore: bump component docs version, remove restore cache step (#1950)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbinda authored and Trancever committed Jun 2, 2020
1 parent 691376b commit 949df3e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
keys:
- dependencies-{{ checksum "package.json" }}
- dependencies-
- restore_cache:
keys:
- dependencies-docs-{{ checksum "docs/package.json" }}
- dependencies-docs-
- restore_cache:
keys:
- dependencies-example-{{ checksum "example/package.json" }}
Expand All @@ -38,17 +34,20 @@ jobs:
yarn install --frozen-lockfile
- save_cache:
key: dependencies-{{ checksum "package.json" }}
paths: node_modules
paths:
- node_modules
- save_cache:
key: dependencies-docs-{{ checksum "docs/package.json" }}
paths: docs/node_modules
paths:
- docs/node_modules
- save_cache:
key: dependencies-example-{{ checksum "example/package.json" }}
paths: example/node_modules
paths:
- example/node_modules
- persist_to_workspace:
root: .
paths: .

paths:
- .
lint:
executor: default
steps:
Expand Down Expand Up @@ -84,7 +83,8 @@ jobs:
path: coverage
destination: coverage
- save_cache:
paths: ./cache/jest
paths:
- ./cache/jest
key: jest-cache-{{ .Branch }}

build-package:
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"color": "^3.1.2",
"component-docs": "^0.21.0",
"component-docs": "^0.22.0",
"linaria": "^1.2.4",
"react-native-vector-icons": "^6.6.0"
},
Expand Down
8 changes: 4 additions & 4 deletions docs/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2574,10 +2574,10 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=

component-docs@^0.21.0:
version "0.21.0"
resolved "https://registry.yarnpkg.com/component-docs/-/component-docs-0.21.0.tgz#d688d7bc1857ef36fb14da6ed72d1a45230b1db6"
integrity sha512-gsUn92ewpqEbH0AvaCWCQbMGFc2k4DZM2qYHKsr46TysHoE0BEEJn1D5HbC6vY2eSTuS+KsHaTzLb4iO5aPRtw==
component-docs@^0.22.0:
version "0.22.0"
resolved "https://registry.yarnpkg.com/component-docs/-/component-docs-0.22.0.tgz#2b2c21392413c3ed68944e050e66273a22c6d034"
integrity sha512-Z36nxHg8LD8ZTEDyybGYN3121BF4Nc5EzKc44ofgCNo+a3I3cWOm3oeaTvkRWV2G5u84+6qc9Nsvw9fgkDfyvA==
dependencies:
"@babel/core" "^7.8.4"
"@babel/plugin-proposal-class-properties" "^7.8.3"
Expand Down

0 comments on commit 949df3e

Please sign in to comment.