Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin update #4

Merged
merged 2 commits into from
Jul 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{{long description}}

```gherkin
Feature: {{feature}}
As a {{persona}}
I want {{need}}
So that {{rationale}}

Scenario: {{scenario}}
Given {{thing}}
When {{action}}
Then {{result}}
```

---

- [ ] {{feature}}/{{scenario}}
6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{{short description}}

---
Resolves #

`DCO 1.1 Signed-off-by: {{full name}} <{{email address}}>`
21 changes: 16 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
sudo: false
language: node_js
node_js:
- '5.7'

# Setup
- '5.11'
cache:
directories:
- node_modules
after_success: npm run coverage
- node_modules
before_script:
- npm prune
after_success:
- npm run coverage
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
#########################
## Notifications
#########################
notifications:
email: false
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributing to Punchcard Content Types

Please follow the [Punchcard Contributing Guidelines](https://github.com/punchcard-cms/punchcard/blob/master/CONTRIBUTING.md)
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
An input plugin with multiple checkboxes
An input plugin with multiple checkboxes [![Build Status](https://travis-ci.org/punchcard-cms/input-plugin-checkbox.svg?branch=master)](https://travis-ci.org/punchcard-cms/input-plugin-checkbox) [![Coverage Status](https://coveralls.io/repos/github/punchcard-cms/input-plugin-checkbox/badge.svg?branch=master)](https://coveralls.io/github/punchcard-cms/input-plugin-checkbox?branch=master) [![NSP Status](https://nodesecurity.io/orgs/punchcard-cms/projects/931324c4-a9aa-4627-b09f-01de702eff08/badge)](https://nodesecurity.io/orgs/punchcard-cms/projects/931324c4-a9aa-4627-b09f-01de702eff08)

## License

Apache-2.0

[npm-image]: https://badge.fury.io/js/input-plugin-checkbox.svg
[npm-url]: https://npmjs.org/package/input-plugin-checkbox
[travis-image]: https://travis-ci.org/punchcard-cms/input-plugin-checkbox.svg
[travis-url]: https://travis-ci.org/punchcard-cms/input-plugin-checkbox
[daviddm-image]: https://david-dm.org/punchcard-cms/input-plugin-checkbox.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/punchcard-cms/input-plugin-checkbox
[coveralls-image]: https://coveralls.io/repos/punchcard-cms/input-plugin-checkbox/badge.svg
[coveralls-url]: https://coveralls.io/r/punchcard-cms/input-plugin-checkbox
24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "input-plugin-checkbox",
"version": "0.0.1",
"version": "0.0.0",
"description": "An input plugin with multiple checkboxes",
"main": "index.js",
"scripts": {
Expand All @@ -10,11 +10,12 @@
"ava:watch": "ava --watch | tap-diff",
"nyc": "nyc --all npm run ava",
"lint": "eslint index.js lib && eslint -c ./.eslintrc-ava.yml tests",
"coverage": "nyc report --reporter=text-lcov | coveralls"
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git@github.com:punchcard-cms/input-plugin-checkbox.git"
"url": "https://github.com/punchcard-cms/input-plugin-checkbox.git"
},
"contributors": [
"Rachel White <whiter@us.ibm.com>"
Expand All @@ -24,10 +25,14 @@
"devDependencies": {
"ava": "^0.14.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.0",
"eslint": "^2.13.1",
"eslint-config-punchcard": "^1.0.1",
"nyc": "^6.0.0",
"ghooks": "^1.3.2",
"nyc": "^6.6.1",
"punchcard-commit-msg": "^1.0.0",
"punchcard-semantic-release": "^2.0.1",
"punchcard-shared-tests": "^1.0.2",
"semantic-release": "^4.3.5",
"tap-diff": "^0.1.1",
"validator": "^5.2.0"
},
Expand All @@ -50,5 +55,14 @@
],
"failFast": true,
"tap": true
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
}
}