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

Commit

Permalink
feat(build): add support for npm publishing
Browse files Browse the repository at this point in the history
- Build in support for npm consumption for users
- Improve efficiency of travis tasks

Closes #3108
  • Loading branch information
maxkorp authored and wesleycho committed Jul 30, 2015
1 parent 797804c commit 27f7ca2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
*.swp
*.swo
.DS_Store

pids
logs
results
# test coverage files
coverage/

node_modules
npm-debug.log

template/**/*.js

.git
docs
misc
src
template
.editorconfig
.gitattributes
.gitignore
.jshintrc
.travis.yml
CONTRIBUTING.md
Gruntfile.js
karma.conf.js
ROADMAP.md

dist/assets
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
node_js:
- "0.12"

before_script:
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g grunt-cli karma
- npm install

script: grunt

0 comments on commit 27f7ca2

Please sign in to comment.