Skip to content

Commit

Permalink
fix(build): fix / debug Travis CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Jan 16, 2016
1 parent 5ea0cfc commit 026e60e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis-deploy.sh
@@ -1,5 +1,5 @@
# go to the out directory and create a *new* Git repo
cd build
cd dist
git init

# inside this git repo we'll pretend to be a new user
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"server_dist": "node server.js --TARGET=DIST",
"test": "mocha --compilers js:babel-register ./src/**/*.test.js",
"karma": "karma start",
"ci": "npm run test && npm run build"
"ci": "npm run test && npm run dist"
},
"author": "tomas.trajan@gmail.com",
"license": "ISC",
Expand Down
4 changes: 3 additions & 1 deletion webpack.config.js
Expand Up @@ -64,7 +64,9 @@ var PARAMS_PER_TARGET = {
DIST: {
debug: false,
output: {
path: './dist'
path: './dist',
// TODO remove hack-fix when gh-pages work again
publicPath: '/angular-js-es6-testing-example/'
},
plugins: [
new CleanWebpackPlugin(['dist']),
Expand Down

0 comments on commit 026e60e

Please sign in to comment.