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 506887e
Show file tree
Hide file tree
Showing 3 changed files with 7 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
2 changes: 2 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ dependencies:
- sudo apt-get update && sudo apt-get install libpango1.0-0 libpangocairo-1.0-0 firefox

test:
pre:
- npm run bundle
post:
- npm run cover
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 506887e

Please sign in to comment.