Skip to content

Commit b49b84d

Browse files
authored
Merge pull request #60 from punchcard-cms/feature/node6
Feature/node6
2 parents 0f51f1b + 87d2668 commit b49b84d

9 files changed

Lines changed: 137 additions & 22 deletions

File tree

.github/BUG_TEMPLATE.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
LONG_DESCRIPTION
2+
3+
## Steps for Reproducing
4+
5+
- STEP_1
6+
- STEP_2
7+
- STEP_3
8+
9+
## Screenshots
10+
11+
### STEP_1
12+
13+
![Screenshot of Step 1](url/to/screenshot)
14+
15+
### STEP_2
16+
17+
![Screenshot of Step 2](url/to/screenshot)
18+
19+
### STEP_3
20+
21+
![Screenshot of Step 3](url/to/screenshot)
22+
23+
## Affected Browsers
24+
25+
- [ ] CHROME_53_MAC_SIERRA / CORE
26+
- [ ] CHROME_53_WINDOWS_10 / MODULE
27+
- [ ] FIREFOX_42_MAC_SIERRA / MODULE
28+
29+
## Runtime Version
30+
31+
RUNTIME_VERSION
32+
33+
## Code Version
34+
35+
CODE_VERSION

.github/CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing to Punchcard Input Plugins
2+
3+
Please follow the [Punchcard Contributing Guidelines](https://github.com/punchcard-cms/punchcard/blob/master/CONTRIBUTING.md)

.github/ISSUE_TEMPLATE.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
{{long description}}
1+
LONG_DESCRIPTION
22

33
```gherkin
4-
Feature: {{feature}}
5-
As a {{persona}}
6-
I want {{need}}
7-
So that {{rationale}}
4+
Feature: FEATURE
5+
As a PERSONA
6+
I want NEED
7+
So that RATIONALE
88
9-
Scenario: {{scenario}}
10-
Given {{thing}}
11-
When {{action}}
12-
Then {{result}}
9+
Scenario: SCENARIO
10+
Given CONTEXT
11+
When ACTION
12+
Then RESULT
1313
```
1414

1515
---
1616

17-
- [ ] {{feature}}/{{scenario}}
17+
**FEATURE**
18+
- [ ] SCENARIO

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{{short description}}
1+
SHORT_DESCRIPTION
22

33
---
44
Resolves #
55

6-
`DCO 1.1 Signed-off-by: {{full name}} <{{email address}}>`
6+
`DCO 1.1 Signed-off-by: FULL_NAME <EMAIL_ADDRESS>`

.github/labels.yml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
section:
2+
description: Section of the Puncchard Input Plugin that this issue belongs to.
3+
color: '#c0e6ff'
4+
labels:
5+
- inputs
6+
- validation
7+
- settings
8+
- markup
9+
problem:
10+
description: 'Issues that make the Puncchard Input Plugin feel broken or prevent us from doing further work, but otherwise work as designed. High priority.'
11+
color: '#ff5050'
12+
labels:
13+
- blocked
14+
- blocker
15+
- bug
16+
- externally blocked
17+
- hotfix
18+
experience:
19+
description: Issues that affect a user's comprehension or overall enjoyment of the Puncchard Input Plugin.
20+
color: '#ffa573'
21+
labels:
22+
- visual design
23+
- microcopy
24+
- user experience
25+
- developer experience
26+
- performance
27+
mindless:
28+
description: Issues that are necessary but less impactful for our users.
29+
color: '#ffd4a0'
30+
labels:
31+
- cleanup
32+
- legal
33+
- technical debt
34+
- experience debt
35+
- tests
36+
- greenkeeper
37+
feedback:
38+
description: Issues that require further conversation to figure out how to proceed or what action steps are needed.
39+
color: '#db2780'
40+
labels:
41+
- request for comments
42+
- help wanted
43+
- question
44+
- research
45+
- strategy
46+
- stub
47+
- prototype
48+
addition:
49+
description: Issues that will result in new functionality or releases.
50+
color: '#b4e051'
51+
labels:
52+
- feature
53+
improvement:
54+
description: Issues that will iterate on existing functionality.
55+
color: '#41d6c3'
56+
labels:
57+
- enhancement
58+
- optimization
59+
pending:
60+
description: 'Issues where action can be taken, but has not yet.'
61+
color: '#fdd600'
62+
labels:
63+
- under consideration
64+
- consumable
65+
inactive:
66+
description: Issues where no actions are needed or possible. The issue is either fixed or addressed better by other issues.
67+
color: '#dfe9e9'
68+
labels:
69+
- invalid
70+
- won't fix
71+
- duplicate
72+
- on hold
73+
epic:
74+
description: 'Epics track multiple stories together towards a desired outcome.'
75+
color: '#9855d4'
76+
labels:
77+
- epic

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v5.7
1+
v6

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- '5.11'
4+
- '6'
55
cache:
66
directories:
7-
- node_modules
7+
- node_modules
88
before_script:
99
- npm prune
1010
after_success:
1111
- npm run coverage
1212
- npm run semantic-release
13+
- npm run reparo
1314
branches:
1415
except:
1516
- /^v\d+\.\d+\.\d+$/
1617
#########################
1718
## Notifications
1819
#########################
1920
notifications:
20-
email: false
21+
email: false

CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"nyc": "nyc --all npm run ava",
1212
"lint": "eslint index.js lib && eslint -c ./.eslintrc-ava.yml tests",
1313
"coverage": "nyc report --reporter=text-lcov | coveralls",
14-
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
14+
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
15+
"reparo": "reparo -b master"
1516
},
1617
"repository": {
1718
"type": "git",
@@ -34,12 +35,12 @@
3435
"punchcard-commit-msg": "^1.0.0",
3536
"punchcard-semantic-release": "^2.0.1",
3637
"punchcard-shared-tests": "^1.0.2",
38+
"reparo": "^1.1.1-0",
3739
"semantic-release": "^4.3.5",
3840
"tap-diff": "^0.1.1"
3941
},
4042
"engines": {
41-
"node": "5.7",
42-
"npm": "^3.6"
43+
"node": "^6"
4344
},
4445
"keywords": [
4546
"input-plugin",

0 commit comments

Comments
 (0)