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

Commit

Permalink
fix(bundling): update bundle config
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedshuhel committed Dec 26, 2015
1 parent 24a73d3 commit c524ed0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build/bundles.json
Expand Up @@ -29,7 +29,8 @@
],
"options": {
"inject": true,
"minify": true
"minify": true,
"rev": true
}
}
}
Expand Down
5 changes: 3 additions & 2 deletions build/tasks/bundle.js
Expand Up @@ -4,11 +4,12 @@ var bundles = require('../bundles.json');

var config = {
force: true,
packagePath: '.',
baseURL: '.',
configPath: './config.js',
bundles: bundles.bundles
};

gulp.task('bundle', function() {
gulp.task('bundle', ['unbundle', 'build'], function() {
return bundler.bundle(config);
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,7 +23,7 @@
"e2e": "gulp serve webdriver-standalone e2e"
},
"devDependencies": {
"aurelia-bundler": "^0.1.8",
"aurelia-bundler": "^0.2.1",
"aurelia-tools": "^0.1.3",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
Expand Down

0 comments on commit c524ed0

Please sign in to comment.