Skip to content

Commit

Permalink
feat(contribution-types): added "Data" contribution (#231)
Browse files Browse the repository at this point in the history
* feat(contribution-types): added "Data" contribution

* Updated node and yarn versions to pass CI

Co-authored-by: Maximilian Berkmann <maxieberkmann@gmail.com>
  • Loading branch information
Stefano Moia and Berkmann18 committed Jan 3, 2020
1 parent cc2585b commit 0993a90
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

docker_defaults: &docker_defaults
docker:
- image: circleci/node:8.16.2
- image: circleci/node:12.14.0

commands:
prep_env:
Expand All @@ -12,13 +12,15 @@ commands:
path: ~/repo
- restore_cache:
name: Restore node_modules cache
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
key:
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
save_env_cache:
description: Saves environment cache
steps:
- save_cache:
name: Save node_modules cache
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
key:
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
paths:
- node_modules/

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.16.0
12.14.0
2 changes: 1 addition & 1 deletion .yvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.2
1.21.1
4 changes: 4 additions & 0 deletions src/util/contribution-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ const defaultTypes = function(repoType) {
symbol: '🖋',
description: 'Content',
},
data: {
symbol: '🔣',
description: 'Data',
},
design: {
symbol: '🎨',
description: 'Design',
Expand Down

0 comments on commit 0993a90

Please sign in to comment.