Skip to content

Commit 85d1352

Browse files
committed
fix(publish): npm publish fix
1 parent 26fe4b4 commit 85d1352

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

.npmignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,12 @@ npm-debug.log
1414
src
1515
.idea
1616
yarn.lock
17+
.vscode
18+
.eslintrc
19+
.editorconfig
20+
.babelrc
21+
.gitignore
22+
.travis.yml
23+
index.md
24+
tests
25+
.eslintignore

.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
language: node_js
2-
cache:
3-
directories:
4-
- ~/.npm
5-
- node_modules
2+
cache: npm
63
notifications:
74
email: false
85
node_js:
96
- '8'
7+
before_install: npm install --global greenkeeper-lockfile@1
8+
before_script:
9+
- greenkeeper-lockfile-update
10+
- npm run compile
11+
after_script:
12+
- git diff --color | cat
13+
- greenkeeper-lockfile-upload
1014
after_success:
1115
- npm run travis-deploy-once "npm run semantic-release"
1216
branches:

0 commit comments

Comments
 (0)