Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
Add @ZitaNemeckova as a contributor
Browse files Browse the repository at this point in the history
  • Loading branch information
hipstersmoothie committed Apr 2, 2020
1 parent ce78ef7 commit aee4716
Show file tree
Hide file tree
Showing 5 changed files with 1,830 additions and 16 deletions.
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@
"contributions": [
"code"
]
},
{
"login": "ZitaNemeckova",
"name": "ZitaNemeckova",
"avatar_url": "https://avatars2.githubusercontent.com/u/9210860?v=4",
"profile": "https://github.com/ZitaNemeckova",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7
Expand Down
57 changes: 57 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
version: 2

defaults: &defaults
working_directory: ~/storybook-deployer
docker:
- image: circleci/node:latest-browsers

jobs:
install:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
# Find a cache corresponding to this specific package.json checksum
# when this file is changed, this key will fail
- storybook-deployer-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum ".circleci/config.yml" }}
- storybook-deployer-{{ .Branch }}-{{ checksum "yarn.lock" }}
- storybook-deployer-{{ .Branch }}
# Find the most recent cache used from any branch
- storybook-deployer-master
- storybook-deployer-
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
key: storybook-deployer-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum ".circleci/config.yml" }}
paths:
- node_modules
- ~/.cache/yarn
- persist_to_workspace:
root: .
paths:
- .

release:
<<: *defaults
steps:
- attach_workspace:
at: ~/storybook-deployer
- run:
name: Release
command: yarn release

workflows:
version: 2
build_and_test:
jobs:
- install

- release:
requires:
- install
filters:
branches:
only:
- master
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<tr>
<td align="center"><a href="https://github.com/baopham"><img src="https://avatars3.githubusercontent.com/u/783410?v=4" width="100px;" alt=""/><br /><sub><b>Bao Pham</b></sub></a><br /><a href="https://github.com/storybookjs/storybook-deployer/commits?author=baopham" title="Code">💻</a></td>
<td align="center"><a href="https://encoredevlabs.com"><img src="https://avatars1.githubusercontent.com/u/498669?v=4" width="100px;" alt=""/><br /><sub><b>Ankur Patel</b></sub></a><br /><a href="https://github.com/storybookjs/storybook-deployer/commits?author=ankurp" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/ZitaNemeckova"><img src="https://avatars2.githubusercontent.com/u/9210860?v=4" width="100px;" alt=""/><br /><sub><b>ZitaNemeckova</b></sub></a><br /><a href="https://github.com/storybookjs/storybook-deployer/commits?author=ZitaNemeckova" title="Code">💻</a></td>
</tr>
</table>

Expand Down
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"storybook-to-ghpages": "./bin/storybook_to_ghpages",
"storybook-to-aws-s3": "./bin/storybook_to_aws_s3"
},
"scripts": {
"release": "auto shipit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storybooks/storybook-deployer.git"
Expand All @@ -30,6 +33,10 @@
"yargs": "^11.0.0"
},
"devDependencies": {
"@auto-it/all-contributors": "^9.23.0",
"@auto-it/first-time-contributor": "^9.23.0",
"all-contributors-cli": "^6.14.1",
"auto": "^9.23.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
Expand All @@ -47,5 +54,25 @@
"prettier --write",
"git add"
]
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
[
"all-contributors",
{
"types": {
"plugin": "**/plugin/**/*",
"code": [
"**/src/**/*",
"**/package.json",
"**/tsconfig.json"
]
}
}
]
]
}
}

0 comments on commit aee4716

Please sign in to comment.