Skip to content

Commit

Permalink
Merge pull request #211 from stencila/bundler
Browse files Browse the repository at this point in the history
Bundling
  • Loading branch information
oliver7654 committed Mar 13, 2017
2 parents e5a8f10 + 9e9bd0a commit 6c1fdc3
Show file tree
Hide file tree
Showing 66 changed files with 13,013 additions and 1,932 deletions.
8 changes: 0 additions & 8 deletions .babelrc

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/npm-debug.log
/.sandbox
/*.sublime-workspace
/tmp
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.sandbox
docs
coverage
tmp
*.sublime-workspace
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ cache:
directories:
- node_modules

before_script:
- npm install documentation

script:
- make lint
- make cover
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ lint:
test:
npm test

test-bundle:
npm run test-bundle
test-browser:
npm run test-browser

test-one:
npm run test-one

cover:
npm run cover
Expand All @@ -27,4 +30,4 @@ docs-serve:
npm run docs-serve

clean:
rm -rf node_modules build
rm -rf node_modules build tmp

0 comments on commit 6c1fdc3

Please sign in to comment.