Fixes to release-it config and npm files
This commit is contained in:
parent
3afbcca8b3
commit
f053c738b8
|
@ -1,9 +0,0 @@
|
||||||
*
|
|
||||||
*/
|
|
||||||
!README.md
|
|
||||||
!package.json
|
|
||||||
!LICENSE
|
|
||||||
!dist/filer.js
|
|
||||||
!dist/filer.map
|
|
||||||
!dist/filer.min.js
|
|
||||||
!dist/filer.min.map
|
|
|
@ -1,17 +1,18 @@
|
||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"beforeStart": "npm run test",
|
"beforeStart": "npm run test",
|
||||||
"beforeBump": "npm run build"
|
"beforeBump": "npm run build",
|
||||||
|
"changelogCommand": "git log --pretty=format:'* %s (%h)' [REV_RANGE]"
|
||||||
},
|
},
|
||||||
"git": {
|
"git": {
|
||||||
"pushRepo": "git@github.com:filerjs/filer.git"
|
"pushRepo": "git@github.com:filerjs/filer.git",
|
||||||
|
"tagName": "v%s"
|
||||||
},
|
},
|
||||||
"npm": {
|
"npm": {
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
"github": {
|
"github": {
|
||||||
"release": true,
|
"release": true,
|
||||||
"releaseName": "Filer.js %s Released",
|
"releaseName": "Filer.js %s Released"
|
||||||
"assets": [ "dist/*.zip" ]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,6 +70,9 @@
|
||||||
},
|
},
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"browser": "./dist/filer.min.js",
|
"browser": "./dist/filer.min.js",
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"tests/**/*.js",
|
"tests/**/*.js",
|
||||||
|
|
Loading…
Reference in New Issue