Skip to content

Commit

Permalink
chore(all): prepare release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 8, 2016
1 parent 94bfbac commit 04989fd
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-testing",
"version": "0.3.0",
"version": "0.3.1",
"description": "A collection of helpers for testing Aurelia apps and components.",
"keywords": [
"aurelia",
Expand Down
6 changes: 4 additions & 2 deletions dist/amd/aurelia-testing.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
define(['exports', './compile-spy', './view-spy'], function (exports, _compileSpy, _viewSpy) {
define(['exports', './compile-spy', './view-spy', './component-tester'], function (exports, _compileSpy, _viewSpy, _componentTester) {
'use strict';

Object.defineProperty(exports, "__esModule", {
value: true
});
exports.configure = exports.ViewSpy = exports.CompileSpy = undefined;
exports.configure = exports.ComponentTester = exports.StageComponent = exports.ViewSpy = exports.CompileSpy = undefined;


function configure(config) {
Expand All @@ -13,5 +13,7 @@ define(['exports', './compile-spy', './view-spy'], function (exports, _compileSp

exports.CompileSpy = _compileSpy.CompileSpy;
exports.ViewSpy = _viewSpy.ViewSpy;
exports.StageComponent = _componentTester.StageComponent;
exports.ComponentTester = _componentTester.ComponentTester;
exports.configure = configure;
});
6 changes: 5 additions & 1 deletion dist/commonjs/aurelia-testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.configure = exports.ViewSpy = exports.CompileSpy = undefined;
exports.configure = exports.ComponentTester = exports.StageComponent = exports.ViewSpy = exports.CompileSpy = undefined;

var _compileSpy = require('./compile-spy');

var _viewSpy = require('./view-spy');

var _componentTester = require('./component-tester');

function configure(config) {
config.globalResources('./compile-spy', './view-spy');
}

exports.CompileSpy = _compileSpy.CompileSpy;
exports.ViewSpy = _viewSpy.ViewSpy;
exports.StageComponent = _componentTester.StageComponent;
exports.ComponentTester = _componentTester.ComponentTester;
exports.configure = configure;
3 changes: 2 additions & 1 deletion dist/es2015/aurelia-testing.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { CompileSpy } from './compile-spy';
import { ViewSpy } from './view-spy';
import { StageComponent, ComponentTester } from './component-tester';

function configure(config) {
config.globalResources('./compile-spy', './view-spy');
}

export { CompileSpy, ViewSpy, configure };
export { CompileSpy, ViewSpy, StageComponent, ComponentTester, configure };
11 changes: 9 additions & 2 deletions dist/system/aurelia-testing.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

System.register(['./compile-spy', './view-spy'], function (_export, _context) {
System.register(['./compile-spy', './view-spy', './component-tester'], function (_export, _context) {
"use strict";

var CompileSpy, ViewSpy;
var CompileSpy, ViewSpy, StageComponent, ComponentTester;


function configure(config) {
Expand All @@ -15,12 +15,19 @@ System.register(['./compile-spy', './view-spy'], function (_export, _context) {
CompileSpy = _compileSpy.CompileSpy;
}, function (_viewSpy) {
ViewSpy = _viewSpy.ViewSpy;
}, function (_componentTester) {
StageComponent = _componentTester.StageComponent;
ComponentTester = _componentTester.ComponentTester;
}],
execute: function () {
_export('CompileSpy', CompileSpy);

_export('ViewSpy', ViewSpy);

_export('StageComponent', StageComponent);

_export('ComponentTester', ComponentTester);

_export('configure', configure);
}
};
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.3.1 (2016-06-08)


#### Bug Fixes

* **aurelia-testing:** missing exports ([94bfbaca](http://github.com/aurelia/testing/commit/94bfbacac394d10a35da19adf044612f89066a39), closes [#10](http://github.com/aurelia/testing/issues/10))


## 0.3.0 (2016-05-31)


Expand Down
4 changes: 2 additions & 2 deletions doc/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
"type": {
"type": "reference",
"name": "View",
"id": 2565,
"id": 2116,
"moduleName": "\"aurelia-templating\""
}
},
Expand Down Expand Up @@ -394,7 +394,7 @@
"type": {
"type": "reference",
"name": "Aurelia",
"id": 623
"id": 698
}
}
],
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-testing",
"version": "0.3.0",
"version": "0.3.1",
"description": "A collection of helpers for testing Aurelia apps and components.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 04989fd

Please sign in to comment.