mirror of
https://github.com/kremalicious/gatsby-plugin-matomo.git
synced 2024-12-22 09:13:19 +01:00
add Travis, add badges, add semi-auto releases
This commit is contained in:
parent
49bffd3cf1
commit
fe823b76a1
5
.babelrc
5
.babelrc
@ -1,7 +1,6 @@
|
||||
{
|
||||
"presets": [
|
||||
["env", { "browser": true }],
|
||||
["react"],
|
||||
["flow"]
|
||||
["react"]
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -1,2 +1,6 @@
|
||||
node_modules
|
||||
src
|
||||
.babelrc
|
||||
.editorconfig
|
||||
.eslintrc
|
||||
.travis.yml
|
||||
|
5
.travis.yml
Normal file
5
.travis.yml
Normal file
@ -0,0 +1,5 @@
|
||||
language: node_js
|
||||
node_js: node
|
||||
|
||||
notifications:
|
||||
email: false
|
30
README.md
30
README.md
@ -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`
|
||||
|
10
package.json
10
package.json
@ -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"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user