Skip to content

Commit 7648d1c

Browse files
chore(all): prepare release 1.0.0-beta.1.1.3
1 parent d411139 commit 7648d1c

14 files changed

+51
-43
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-templating",
3-
"version": "1.0.0-beta.1.1.2",
3+
"version": "1.0.0-beta.1.1.3",
44
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-templating.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
10791079
initialize(container: Container): void;
10801080

10811081
/**
1082-
* Registrers the resources in the module with the view resources.
1082+
* Registers the resources in the module with the view resources.
10831083
* @param registry The registry of view resources to regiser within.
10841084
* @param name The name to use in registering the default resource.
10851085
*/

dist/amd/aurelia-templating.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4046,7 +4046,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-metadata', 'aureli
40464046
ElementConfigResource.prototype.register = function register(registry, name) {};
40474047

40484048
ElementConfigResource.prototype.load = function load(container, target) {
4049-
var config = new Target();
4049+
var config = new target();
40504050
var eventManager = container.get(_aureliaBinding.EventManager);
40514051
eventManager.registerElementConfig(config);
40524052
};

dist/aurelia-templating.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
10791079
initialize(container: Container): void;
10801080

10811081
/**
1082-
* Registrers the resources in the module with the view resources.
1082+
* Registers the resources in the module with the view resources.
10831083
* @param registry The registry of view resources to regiser within.
10841084
* @param name The name to use in registering the default resource.
10851085
*/

dist/aurelia-templating.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2932,7 +2932,7 @@ export class ResourceModule {
29322932
}
29332933

29342934
/**
2935-
* Registrers the resources in the module with the view resources.
2935+
* Registers the resources in the module with the view resources.
29362936
* @param registry The registry of view resources to regiser within.
29372937
* @param name The name to use in registering the default resource.
29382938
*/
@@ -4829,7 +4829,7 @@ export class ElementConfigResource {
48294829
* @param target The class to which this resource metadata is attached.
48304830
*/
48314831
load(container: Container, target: Function): void {
4832-
let config = new Target();
4832+
let config = new target();
48334833
let eventManager = container.get(EventManager);
48344834
eventManager.registerElementConfig(config);
48354835
}

dist/commonjs/aurelia-templating.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
10791079
initialize(container: Container): void;
10801080

10811081
/**
1082-
* Registrers the resources in the module with the view resources.
1082+
* Registers the resources in the module with the view resources.
10831083
* @param registry The registry of view resources to regiser within.
10841084
* @param name The name to use in registering the default resource.
10851085
*/

dist/commonjs/aurelia-templating.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4065,7 +4065,7 @@ var ElementConfigResource = (function () {
40654065
ElementConfigResource.prototype.register = function register(registry, name) {};
40664066

40674067
ElementConfigResource.prototype.load = function load(container, target) {
4068-
var config = new Target();
4068+
var config = new target();
40694069
var eventManager = container.get(_aureliaBinding.EventManager);
40704070
eventManager.registerElementConfig(config);
40714071
};

dist/es6/aurelia-templating.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
10791079
initialize(container: Container): void;
10801080

10811081
/**
1082-
* Registrers the resources in the module with the view resources.
1082+
* Registers the resources in the module with the view resources.
10831083
* @param registry The registry of view resources to regiser within.
10841084
* @param name The name to use in registering the default resource.
10851085
*/

dist/es6/aurelia-templating.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2932,7 +2932,7 @@ export class ResourceModule {
29322932
}
29332933

29342934
/**
2935-
* Registrers the resources in the module with the view resources.
2935+
* Registers the resources in the module with the view resources.
29362936
* @param registry The registry of view resources to regiser within.
29372937
* @param name The name to use in registering the default resource.
29382938
*/
@@ -4829,7 +4829,7 @@ export class ElementConfigResource {
48294829
* @param target The class to which this resource metadata is attached.
48304830
*/
48314831
load(container: Container, target: Function): void {
4832-
let config = new Target();
4832+
let config = new target();
48334833
let eventManager = container.get(EventManager);
48344834
eventManager.registerElementConfig(config);
48354835
}

dist/system/aurelia-templating.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
10791079
initialize(container: Container): void;
10801080

10811081
/**
1082-
* Registrers the resources in the module with the view resources.
1082+
* Registers the resources in the module with the view resources.
10831083
* @param registry The registry of view resources to regiser within.
10841084
* @param name The name to use in registering the default resource.
10851085
*/

0 commit comments

Comments
 (0)