Skip to content

Commit 026e60e

Browse files
committed
fix(build): fix / debug Travis CI build
1 parent 5ea0cfc commit 026e60e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis-deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# go to the out directory and create a *new* Git repo
2-
cd build
2+
cd dist
33
git init
44

55
# inside this git repo we'll pretend to be a new user

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"server_dist": "node server.js --TARGET=DIST",
1212
"test": "mocha --compilers js:babel-register ./src/**/*.test.js",
1313
"karma": "karma start",
14-
"ci": "npm run test && npm run build"
14+
"ci": "npm run test && npm run dist"
1515
},
1616
"author": "tomas.trajan@gmail.com",
1717
"license": "ISC",

webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ var PARAMS_PER_TARGET = {
6464
DIST: {
6565
debug: false,
6666
output: {
67-
path: './dist'
67+
path: './dist',
68+
// TODO remove hack-fix when gh-pages work again
69+
publicPath: '/angular-js-es6-testing-example/'
6870
},
6971
plugins: [
7072
new CleanWebpackPlugin(['dist']),

0 commit comments

Comments
 (0)