We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45981f commit a1bd73fCopy full SHA for a1bd73f
.release.json
@@ -0,0 +1,14 @@
1
+{
2
+ "src": {
3
+ "tagName": "v%s"
4
+ },
5
+ "github": {
6
+ "release": true,
7
+ "releaseName": "v%s",
8
+ "tokenRef": "GITHUB_TOKEN"
9
10
+ "npm": {
11
+ "publish": true
12
13
+ "changelogCommand": "git log --pretty=format:'* %s (%h)' [REV_RANGE]"
14
+}
package.json
@@ -11,10 +11,12 @@
"scripts": {
"lint": "eslint --ext=js,html src tests examples",
"build": "node build/build.js",
- "test": "npm run lint",
+ "pretest": "npm run lint",
15
+ "test": "npm run unit",
16
"unit": "nyc ava test/**/*.spec.js",
17
"dev": "npm run unit -- -w",
- "prepublishOnly": "npm run build"
18
+ "prepublishOnly": "npm run build",
19
+ "release": "release-it --preRelease=alpha"
20
},
21
"repository": {
22
"type": "git",
0 commit comments