Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 16, 2016
1 parent de14600 commit 990b4a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ var AureliaWebpackPlugin = function () {
var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
(0, _classCallCheck3.default)(this, AureliaWebpackPlugin);

options.root = path.normalizeSafe(options.root) || path.dirname(module.parent.filename);
options.src = path.normalizeSafe(options.src) || path.resolve(options.root, 'src');
options.root = options.root ? path.normalizeSafe(options.root) : path.dirname(module.parent.filename);
options.src = options.src ? path.normalizeSafe(options.src) : path.resolve(options.root, 'src');
options.resourceRegExp = options.resourceRegExp || /aurelia-loader-context/;

this.options = options;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-webpack-plugin",
"version": "1.0.0-beta.2.0.1",
"version": "1.0.0-beta.2.0.2",
"description": "A plugin for webpack that enables bundling Aurelia applications.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 990b4a0

Please sign in to comment.