Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlanjc committed Jan 25, 2020
1 parent 20917c9 commit ac13ae4
Show file tree
Hide file tree
Showing 4 changed files with 1,640 additions and 1,265 deletions.
13 changes: 7 additions & 6 deletions .storybook/Colors.js
Expand Up @@ -33,12 +33,13 @@ storiesOf('Color', module).add('Palette', () => (
Color Palette
</Heading.h1>
<Flex wrap>
{next.map(color =>
!color.key[color.key.length - 1].match(/^\d+$/) ? (
<Box key={color.key} p={3} width={[1, 1 / 2, 1 / 3, 1 / 4, 1 / 5]}>
<Card name={color.key} color={color.value} />
</Box>
) : null
{next.map(
color =>
!color.key[color.key.length - 1].match(/^\d+$/) ? (
<Box key={color.key} p={3} width={[1, 1 / 2, 1 / 3, 1 / 4, 1 / 5]}>
<Card name={color.key} color={color.value} />
</Box>
) : null
)}
</Flex>
</div>
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 8
- 12
after_success:
- npm run storybook
deploy:
Expand Down
18 changes: 10 additions & 8 deletions package.json
Expand Up @@ -15,7 +15,7 @@
"author": "Lachlan Campbell <lachlan@hackclub.com>",
"license": "MIT",
"dependencies": {
"@hackclub/icons": "^0.0.2",
"@hackclub/icons": "^0.0.3",
"lodash": "^4.17.15",
"palx": "1.0.2",
"prop-types": "^15.7.2",
Expand All @@ -25,12 +25,12 @@
"styled-system": "1.1.7"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-info": "^5.2.8",
"@storybook/react": "^5.2.8",
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@storybook/addon-info": "^5.3.9",
"@storybook/react": "^5.3.9",
"@storybook/storybook-deployer": "^2.8.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
Expand All @@ -51,7 +51,9 @@
"coveragePathIgnorePatterns": [
"dist/"
],
"setupTestFrameworkScriptFile": "./test-setup.js"
"setupFilesAfterEnv": [
"./test-setup.js"
]
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ac13ae4

Please sign in to comment.