Skip to content

Commit 0993a90

Browse files
Stefano MoiaBerkmann18
andcommitted
feat(contribution-types): added "Data" contribution (#231)
* feat(contribution-types): added "Data" contribution * Updated node and yarn versions to pass CI Co-authored-by: Maximilian Berkmann <maxieberkmann@gmail.com>
1 parent cc2585b commit 0993a90

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33
docker_defaults: &docker_defaults
44
docker:
5-
- image: circleci/node:8.16.2
5+
- image: circleci/node:12.14.0
66

77
commands:
88
prep_env:
@@ -12,13 +12,15 @@ commands:
1212
path: ~/repo
1313
- restore_cache:
1414
name: Restore node_modules cache
15-
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
15+
key:
16+
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
1617
save_env_cache:
1718
description: Saves environment cache
1819
steps:
1920
- save_cache:
2021
name: Save node_modules cache
21-
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
22+
key:
23+
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
2224
paths:
2325
- node_modules/
2426

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.16.0
1+
12.14.0

.yvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.2
1+
1.21.1

src/util/contribution-types.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ const defaultTypes = function(repoType) {
2929
symbol: '🖋',
3030
description: 'Content',
3131
},
32+
data: {
33+
symbol: '🔣',
34+
description: 'Data',
35+
},
3236
design: {
3337
symbol: '🎨',
3438
description: 'Design',

0 commit comments

Comments
 (0)