Skip to content

Commit d96ef92

Browse files
committed
Update travis to handle deployment of package to npm (Fix niklasvh#4)
1 parent fe9b686 commit d96ef92

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
/nbproject
22
node_modules/
33
*.idea
4+
*.iml
5+
test/
6+
npm-debug.log

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
/node_modules/
2+
Gruntfile.js
3+
/test/

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
---
22
language: node_js
33
node_js:
4-
- '0.10'
54
- '0.12'
65
- 'iojs-1'
76
- 'iojs-2'
87
- 'iojs-3'
8+
- '4.1'
99
before_script:
1010
- npm install
11+
deploy:
12+
- provider: npm
13+
14+
api_key:
15+
secure: G/Szpr8q4/D6hp+H/Z9yyluUXtHAwf7LLa1Y07X59/Enlj1h7V5fQ7AW4/iAVM3XbIsrCPWR3dJU9g/ZxpxFg4OovIHVpS2Jr/mahtPYWdHR3pWuSmMW8QD+Twnq2VAFwSgg5Oumq3QxhX3YbCOnZox6+6Uviqk8FO7Z5B0RwW4=
16+
on:
17+
tags: true
18+
branch: master
19+
repo: niklasvh/base64-arraybuffer

0 commit comments

Comments
 (0)