add Travis, add badges, add semi-auto releases

This commit is contained in:
Matthias Kretschmann 2018-05-07 20:22:11 +02:00
parent 49bffd3cf1
commit fe823b76a1
Signed by: m
GPG Key ID: 606EEEF3C479A91F
5 changed files with 46 additions and 8 deletions

View File

@ -1,7 +1,6 @@
{
"presets": [
["env", { "browser": true }],
["react"],
["flow"]
["react"]
]
}
}

View File

@ -1,2 +1,6 @@
node_modules
src
.babelrc
.editorconfig
.eslintrc
.travis.yml

5
.travis.yml Normal file
View File

@ -0,0 +1,5 @@
language: node_js
node_js: node
notifications:
email: false

View File

@ -1,6 +1,9 @@
# gatsby-plugin-matomo
> Gatsby plugin to add Matomo (formerly Piwik) onto a site.
![npm package](https://img.shields.io/npm/v/gatsby-plugin-matomo.svg)
![Travis](https://img.shields.io/travis/kremalicious/gatsby-plugin-matomo.svg)
⚛️📄🚀 Gatsby plugin to add [Matomo](https://matomo.org) (formerly Piwik) onto a site.
## Usage
@ -39,14 +42,37 @@ Plugin uses sensible defaults prioritizing user experience & privacy:
- don't load anything when visitor has Do Not Track enabled
- don't load anything in non-production environments
## Development
```bash
npm i
npm run build
# publishing to npm & GitHub releases
# uses https://github.com/webpro/release-it
npm run release
npm run release-minor
npm run release-major
```
## License
The MIT License
Copyright (c) 2018 Matthias Kretschmann m@kretschmann.io
Copyright (c) 2018 Matthias Kretschmann
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---
Made with ♥ by [Matthias Kretschmann](https://matthiaskretschmann.com) ([@kremalicious](https://github.com/kremalicious))
Say thanks with BTC:
`35UUssHexVK48jbiSgTxa4QihEoCqrwCTG`
Say thanks with ETH:
`0x04354F554536DA108726829207958d3E277f0210`

View File

@ -15,7 +15,8 @@
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0"
"eslint-plugin-react": "^7.7.0",
"release-it": "^7.4.3"
},
"homepage": "https://github.com/kremalicious/gatsby-plugin-matomo",
"keywords": [
@ -32,8 +33,11 @@
"repository": "https://github.com/kremalicious/gatsby-plugin-matomo.git",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__",
"format": "prettier --write 'src/**/*.{js,jsx}'"
"test": "eslint ./src/**/*.js",
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-major": "./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
}
}