Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 27f7ca2

Browse files
maxkorpwesleycho
authored andcommitted
feat(build): add support for npm publishing
- Build in support for npm consumption for users - Improve efficiency of travis tasks Closes #3108
1 parent 797804c commit 27f7ca2

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

.npmignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
lib-cov
2+
*.seed
3+
*.log
4+
*.csv
5+
*.dat
6+
*.out
7+
*.pid
8+
*.gz
9+
*.swp
10+
*.swo
11+
.DS_Store
12+
13+
pids
14+
logs
15+
results
16+
# test coverage files
17+
coverage/
18+
19+
node_modules
20+
npm-debug.log
21+
22+
template/**/*.js
23+
24+
.git
25+
docs
26+
misc
27+
src
28+
template
29+
.editorconfig
30+
.gitattributes
31+
.gitignore
32+
.jshintrc
33+
.travis.yml
34+
CONTRIBUTING.md
35+
Gruntfile.js
36+
karma.conf.js
37+
ROADMAP.md
38+
39+
dist/assets

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
node_js:
33
- "0.12"
44

5-
before_script:
5+
before_install:
66
- export DISPLAY=:99.0
77
- sh -e /etc/init.d/xvfb start
88
- npm install --quiet -g grunt-cli karma
9-
- npm install
109

1110
script: grunt

0 commit comments

Comments
 (0)