Skip to content

Commit 3b24a7f

Browse files
committed
chore: ignore .env files + wire up basic automatic Github release notes using Auto when publishing
1 parent 599652e commit 3b24a7f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Thumbs.db
55
.nyc_output/
66
.vscode/
77
.idea/
8+
.env
89
packages/core/test/public
910
packages/*/public
1011
!packages/core/test/patterns/public/.gitkeep

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"eslint-plugin-prettier": "^3.1.0",
1111
"lerna": "3.11.0",
1212
"prettier": "^1.14.3",
13-
"pretty-quick": "^1.11.1"
13+
"pretty-quick": "^1.11.1",
14+
"auto": "^7.8.0"
1415
},
1516
"private": true,
1617
"scripts": {
@@ -22,7 +23,9 @@
2223
"lint:fix": "npm run lint -- --fix",
2324
"lint": "eslint --max-warnings 0 './packages/{core,cli,uikit-workshop}/**/*.js ' --ignore-path .eslintignore",
2425
"test": "lerna run test",
25-
"clean": "git clean -dfx"
26+
"clean": "git clean -dfx",
27+
"publish": "npx lerna publish -m \"[skip travis] chore(release): publish %s\"",
28+
"postpublish": "auto release"
2629
},
2730
"nyc": {
2831
"exclude": [

0 commit comments

Comments
 (0)