Skip to content

Commit

Permalink
chore(all): updated dependencies
Browse files Browse the repository at this point in the history
After the May 1st release, aurelia dependencies had to be updated along with a breaking change of how a plugin is installed (install method is now called configure)
  • Loading branch information
janvanderhaegen committed May 1, 2015
1 parent 55cd149 commit 01aacab
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 14 deletions.
43 changes: 40 additions & 3 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ System.config({

System.config({
"map": {
"aurelia-binding": "github:aurelia/binding@0.5.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.6.0",
"aurelia-templating": "github:aurelia/templating@0.10.3",
"aurelia-binding": "github:aurelia/binding@0.6.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.7.0",
"aurelia-templating": "github:aurelia/templating@0.11.0",
"traceur": "github:jmcriffey/[email protected]",
"traceur-runtime": "github:jmcriffey/[email protected]",
"github:aurelia/[email protected]": {
Expand All @@ -19,20 +19,40 @@ System.config({
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[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/[email protected]": {
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-html-template-element": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[email protected]",
"webcomponentsjs": "github:webcomponents/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-html-template-element": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]",
"webcomponentsjs": "github:webcomponents/[email protected]"
},
"github:aurelia/[email protected]": {
"core-js": "github:zloirock/[email protected]"
},
"github:aurelia/[email protected]": {
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-dependency-injection": "github:aurelia/[email protected]",
Expand All @@ -54,6 +74,23 @@ System.config({
"aurelia-path": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "github:zloirock/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-dependency-injection": "github:aurelia/[email protected]",
"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": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"process": "npm:[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
}
}
});
Expand Down
4 changes: 2 additions & 2 deletions dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define(['exports', './validation/validation-config', './validation/validation',
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.install = install;
exports.configure = configure;
Object.defineProperty(exports, 'Utilities', {
enumerable: true,
get: function get() {
Expand Down Expand Up @@ -57,7 +57,7 @@ define(['exports', './validation/validation-config', './validation/validation',
}
});

function install(aurelia, configCallback) {
function configure(aurelia, configCallback) {

aurelia.globalizeResources('./validation/validate-custom-attribute');
if (configCallback !== undefined && typeof configCallback === 'function') {
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var _defaults = function (obj, defaults) { var keys = Object.getOwnPropertyNames
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.install = install;
exports.configure = configure;

var _ValidationConfig = require('./validation/validation-config');

Expand Down Expand Up @@ -79,7 +79,7 @@ Object.defineProperty(exports, 'ensure', {
}
});

function install(aurelia, configCallback) {
function configure(aurelia, configCallback) {

aurelia.globalizeResources('./validation/validate-custom-attribute');
if (configCallback !== undefined && typeof configCallback === 'function') {
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export {ensure} from './validation/decorators';
import {ValidationConfig} from './validation/validation-config';
import {Validation} from './validation/validation';

export function install(aurelia, configCallback) {
export function configure(aurelia, configCallback) {

aurelia.globalizeResources('./validation/validate-custom-attribute');
if(configCallback !== undefined && typeof(configCallback) === 'function')
Expand Down
4 changes: 2 additions & 2 deletions dist/system/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
System.register(['./validation/validation-config', './validation/validation', './validation/utilities', './validation/validation-locale', './validation/validation-result', './validation/validation-rules', './validation/validate-custom-attribute', './validation/validate-custom-attribute-view-strategy', './validation/decorators'], function (_export) {
var ValidationConfig, Validation;

_export('install', install);
_export('configure', configure);

function install(aurelia, configCallback) {
function configure(aurelia, configCallback) {

aurelia.globalizeResources('./validation/validate-custom-attribute');
if (configCallback !== undefined && typeof configCallback === 'function') {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"lib": "dist/system"
},
"dependencies": {
"aurelia-binding": "github:aurelia/binding@^0.5.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@^0.6.0",
"aurelia-templating": "github:aurelia/templating@^0.10.3"
"aurelia-binding": "github:aurelia/binding@^0.6.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@^0.7.0",
"aurelia-templating": "github:aurelia/templating@^0.11.0"
}
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export {ensure} from './validation/decorators';
import {ValidationConfig} from './validation/validation-config';
import {Validation} from './validation/validation';

export function install(aurelia, configCallback) {
export function configure(aurelia, configCallback) {

aurelia.globalizeResources('./validation/validate-custom-attribute');
if(configCallback !== undefined && typeof(configCallback) === 'function')
Expand Down

0 comments on commit 01aacab

Please sign in to comment.