Skip to content

Commit

Permalink
chore(all): prepare release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed May 1, 2015
1 parent 51df8db commit c1cc772
Show file tree
Hide file tree
Showing 17 changed files with 1,112 additions and 996 deletions.
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-binding",
"version": "0.10.0",
"version": "0.11.0",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand All @@ -18,8 +18,8 @@
"url": "http://github.com/aurelia/templating-binding"
},
"dependencies": {
"aurelia-binding": "^0.5.0",
"aurelia-logging": "^0.3.0",
"aurelia-templating": "^0.10.0"
"aurelia-binding": "^0.6.0",
"aurelia-logging": "^0.4.0",
"aurelia-templating": "^0.11.0"
}
}
71 changes: 43 additions & 28 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
System.config({
"transpiler": "babel",
"babelOptions": {
"optional": [
"runtime",
"es7.decorators"
]
},
"paths": {
"*": "*.js",
"github:*": "jspm_packages/github/*.js",
Expand All @@ -9,40 +16,48 @@ System.config({

System.config({
"map": {
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-templating": "github:aurelia/[email protected]",
"github:aurelia/[email protected]": {
"aurelia-dependency-injection": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[email protected]"
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-templating": "github:aurelia/[email protected]",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
"github:aurelia/[email protected]": {
"aurelia-dependency-injection": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/dependency-injection@0.6.0": {
"aurelia-logging": "github:aurelia/logging@0.3.0",
"aurelia-metadata": "github:aurelia/metadata@0.4.0",
"core-js": "github:zloirock/core-js@0.8.1"
"github:aurelia/dependency-injection@0.7.0": {
"aurelia-logging": "github:aurelia/logging@0.4.0",
"aurelia-metadata": "github:aurelia/metadata@0.5.0",
"core-js": "npm:core-js@0.9.5"
},
"github:aurelia/loader@0.5.0": {
"github:aurelia/loader@0.6.0": {
"aurelia-html-template-element": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/path@0.5.0",
"core-js": "github:zloirock/core-js@0.8.1",
"webcomponentsjs": "github:webcomponents/webcomponentsjs@0.5.5"
"aurelia-path": "github:aurelia/path@0.6.0",
"core-js": "npm:core-js@0.9.5",
"webcomponentsjs": "github:webcomponents/webcomponentsjs@0.6.1"
},
"github:aurelia/metadata@0.4.0": {
"core-js": "github:zloirock/core-js@0.8.1"
"github:aurelia/metadata@0.5.0": {
"core-js": "npm:core-js@0.9.5"
},
"github:aurelia/templating@0.10.0": {
"aurelia-binding": "github:aurelia/binding@0.5.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.6.0",
"github:aurelia/templating@0.11.0": {
"aurelia-binding": "github:aurelia/binding@0.6.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.7.0",
"aurelia-html-template-element": "github:aurelia/[email protected]",
"aurelia-loader": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[email protected]"
"aurelia-loader": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"process": "npm:[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
}
}
});

Loading

0 comments on commit c1cc772

Please sign in to comment.