Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 9, 2016
1 parent 5b0bc7a commit 6c639dd
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 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-dependency-injection",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.1.0.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
Expand Down
10 changes: 5 additions & 5 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ System.config({
map: {
"aurelia-logging": "npm:aurelia-logging@1.0.0-beta.1",
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1",
"babel": "npm:babel-core@5.8.25",
"babel-runtime": "npm:babel-runtime@5.8.25",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.0.2",
"babel": "npm:babel-core@5.8.34",
"babel-runtime": "npm:babel-runtime@5.8.34",
"core-js": "npm:core-js@1.2.6",
"github:jspm/nodelibs-assert@0.1.0": {
"assert": "npm:assert@1.3.0"
Expand All @@ -37,10 +37,10 @@ System.config({
"util": "npm:util@0.10.3"
},
"npm:aurelia-metadata@1.0.0-beta.1": {
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.0.2",
"core-js": "npm:core-js@1.2.6"
},
"npm:babel-runtime@5.8.25": {
"npm:babel-runtime@5.8.34": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:core-js@1.2.6": {
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-dependency-injection.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-pal'], function (expo
function Container(configuration) {
_classCallCheck(this, Container);

if (!configuration) {
if (configuration === undefined) {
configuration = {};
}

Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-dependency-injection.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export class Container {
* @param configuration Provides some configuration for the new Container instance.
*/
constructor(configuration?: ContainerConfiguration) {
if (!configuration) {
if (configuration === undefined) {
configuration = {};
}

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-dependency-injection.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ var Container = (function () {
function Container(configuration) {
_classCallCheck(this, Container);

if (!configuration) {
if (configuration === undefined) {
configuration = {};
}

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-dependency-injection.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export class Container {
* @param configuration Provides some configuration for the new Container instance.
*/
constructor(configuration?: ContainerConfiguration) {
if (!configuration) {
if (configuration === undefined) {
configuration = {};
}

Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-dependency-injection.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-pal'], function (_expor
function Container(configuration) {
_classCallCheck(this, Container);

if (!configuration) {
if (configuration === undefined) {
configuration = {};
}

Expand Down
4 changes: 4 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.0.0-beta.1.0.1 (2016-01-08)

* minor perf work

### 1.0.0-beta.1 (2015-11-16)


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-dependency-injection",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.1.0.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 6c639dd

Please sign in to comment.