chore: meta files
This commit is contained in:
parent
012dce2641
commit
f31a5dfd04
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
node_modules
|
||||||
|
*.log
|
17
.travis.yml
Normal file
17
.travis.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- '0.10'
|
||||||
|
sudo: false
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- node_modules
|
||||||
|
notifications:
|
||||||
|
emails: false
|
||||||
|
deploy:
|
||||||
|
provider: npm
|
||||||
|
email: stephan@boennemann.me
|
||||||
|
api_key:
|
||||||
|
secure: Lq1FZweaNr/Ah8M7h3oWQ59HTswzvcksTUfzWb/dpqNn5FECN9I+4gi79EQPD62ZbJDCuDHY0EEEDLdnaB1z8N7kOj1RtmvC1k0teTEXFsGBPS4evXakRj+AfoBAGsTaXHqBYBOvYBxJT2Md/UoOgPSQjtAdZSNsmoFb1xkngQ0=
|
||||||
|
on:
|
||||||
|
branch: master
|
||||||
|
repo: boennemann/semantic-release
|
23
README.md
Normal file
23
README.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# semantic-release
|
||||||
|
[](https://travis-ci.org/boennemann/semantic-release)
|
||||||
|
[](https://david-dm.org/boennemann/semantic-release)
|
||||||
|
[](https://david-dm.org/boennemann/semantic-release#info=devDependencies)
|
||||||
|
|
||||||
|
[](https://nodei.co/npm/semantic-release/)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm i semantic-release
|
||||||
|
```
|
||||||
|
|
||||||
|
`semantic-release` provides "prepublish" and "postpublish" hooks so you automatically release the correct version.
|
||||||
|
|
||||||
|
Add this to your `package.json` for maximum comfort:
|
||||||
|
```json
|
||||||
|
"scripts": {
|
||||||
|
"prepublish": "semantic-release pre",
|
||||||
|
"postpublish": "semantic-release post"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
MIT License
|
||||||
|
2015 Stephan Bönnemann
|
40
package.json
Normal file
40
package.json
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"name": "semantic-release",
|
||||||
|
"description": "semantic semver compliant package publishing",
|
||||||
|
"author": "Stephan Bönnemann <stephan@boennemann.me>",
|
||||||
|
"bin": "./bin/semantic-release",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/boennemann/semantic-release/issues"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"conventional-changelog": "0.0.11",
|
||||||
|
"github": "^0.2.3",
|
||||||
|
"minimist": "^1.1.0",
|
||||||
|
"parse-github-repo-url": "^1.0.0",
|
||||||
|
"semver": "^4.2.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"standard": "^2.3.1"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/boennemann/semantic-release",
|
||||||
|
"keywords": [
|
||||||
|
"release",
|
||||||
|
"publish",
|
||||||
|
"module",
|
||||||
|
"package",
|
||||||
|
"semver",
|
||||||
|
"version",
|
||||||
|
"changelog"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "index.js",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/boennemann/semantic-release.git"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"prepublish": "semantic-release pre",
|
||||||
|
"postpublish": "semantic-release post",
|
||||||
|
"test": "standard"
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user