Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
Run webpack during CI #75
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlockhart committed Oct 11, 2016
1 parent 541c699 commit 172d55e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ jspm_packages
.node_repl_history

.DS_Store

# build artifact
client
1 change: 1 addition & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies:
- npm install --only=dev
- npm update
- sudo apt-get update && sudo apt-get install libpango1.0-0 libpangocairo-1.0-0 firefox
- npm run bundle

test:
post:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"test:karma": "karma start",
"test:lint": "eslint .",
"test:mocha": "istanbul cover _mocha --report lcovonly -- tests/*.test.js -R spec",
"clientize": "webpack --optimize-minimize --optimize-dedupe"
"bundle": "webpack --optimize-minimize --optimize-dedupe",
"clientize": "npm run bundle"
}
}

0 comments on commit 172d55e

Please sign in to comment.