Skip to content

Commit

Permalink
chore(all): prepare release 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 7, 2015
1 parent 9f267ea commit 8f3b6d7
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 14 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-templating",
"version": "0.13.1",
"version": "0.13.2",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ declare module 'aurelia-templating' {
export function customElement(name: any): any;
export function customAttribute(name: any, defaultBindingMode: any): any;
export function templateController(target: any): any;
export function bindable(nameOrConfigOrTarget: any, key: any, descriptor: any): any;
export function bindable(nameOrConfigOrTarget?: any, key?: any, descriptor?: any): any;
export function dynamicOptions(target: any): any;
export function sync(selectorOrConfig: any): any;
export function useShadowDOM(target: any): any;
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-depen
};

ConventionalViewStrategy.convertModuleIdToViewUrl = function convertModuleIdToViewUrl(moduleId) {
var id = moduleId.endsWith('.js') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
var id = moduleId.endsWith('.js') || moduleId.endsWith('.ts') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
return id + '.html';
};

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ declare module 'aurelia-templating' {
export function customElement(name: any): any;
export function customAttribute(name: any, defaultBindingMode: any): any;
export function templateController(target: any): any;
export function bindable(nameOrConfigOrTarget: any, key: any, descriptor: any): any;
export function bindable(nameOrConfigOrTarget?: any, key?: any, descriptor?: any): any;
export function dynamicOptions(target: any): any;
export function sync(selectorOrConfig: any): any;
export function useShadowDOM(target: any): any;
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ var ConventionalViewStrategy = (function (_ViewStrategy2) {
};

ConventionalViewStrategy.convertModuleIdToViewUrl = function convertModuleIdToViewUrl(moduleId) {
var id = moduleId.endsWith('.js') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
var id = moduleId.endsWith('.js') || moduleId.endsWith('.ts') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
return id + '.html';
};

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ declare module 'aurelia-templating' {
export function customElement(name: any): any;
export function customAttribute(name: any, defaultBindingMode: any): any;
export function templateController(target: any): any;
export function bindable(nameOrConfigOrTarget: any, key: any, descriptor: any): any;
export function bindable(nameOrConfigOrTarget?: any, key?: any, descriptor?: any): any;
export function dynamicOptions(target: any): any;
export function sync(selectorOrConfig: any): any;
export function useShadowDOM(target: any): any;
Expand Down
4 changes: 2 additions & 2 deletions dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class ConventionalViewStrategy extends ViewStrategy {
}

static convertModuleIdToViewUrl(moduleId){
var id = moduleId.endsWith('.js') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
var id = (moduleId.endsWith('.js') || moduleId.endsWith('.ts')) ? moduleId.substring(0, moduleId.length - 3) : moduleId;
return id + '.html';
}
}
Expand Down Expand Up @@ -2782,7 +2782,7 @@ export function templateController(target){

Decorators.configure.simpleDecorator('templateController', templateController);

export function bindable(nameOrConfigOrTarget, key, descriptor){
export function bindable(nameOrConfigOrTarget?, key?, descriptor?){
var deco = function(target, key, descriptor){
var actualTarget = key ? target.constructor : target, //is it on a property or a class?
resource = Metadata.getOrCreateOwn(Metadata.resource, HtmlBehaviorResource, actualTarget),
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ declare module 'aurelia-templating' {
export function customElement(name: any): any;
export function customAttribute(name: any, defaultBindingMode: any): any;
export function templateController(target: any): any;
export function bindable(nameOrConfigOrTarget: any, key: any, descriptor: any): any;
export function bindable(nameOrConfigOrTarget?: any, key?: any, descriptor?: any): any;
export function dynamicOptions(target: any): any;
export function sync(selectorOrConfig: any): any;
export function useShadowDOM(target: any): any;
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class ConventionalViewStrategy extends ViewStrategy {
}

static convertModuleIdToViewUrl(moduleId){
var id = moduleId.endsWith('.js') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
var id = (moduleId.endsWith('.js') || moduleId.endsWith('.ts')) ? moduleId.substring(0, moduleId.length - 3) : moduleId;
return id + '.html';
}
}
Expand Down Expand Up @@ -2782,7 +2782,7 @@ export function templateController(target){

Decorators.configure.simpleDecorator('templateController', templateController);

export function bindable(nameOrConfigOrTarget, key, descriptor){
export function bindable(nameOrConfigOrTarget?, key?, descriptor?){
var deco = function(target, key, descriptor){
var actualTarget = key ? target.constructor : target, //is it on a property or a class?
resource = Metadata.getOrCreateOwn(Metadata.resource, HtmlBehaviorResource, actualTarget),
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ declare module 'aurelia-templating' {
export function customElement(name: any): any;
export function customAttribute(name: any, defaultBindingMode: any): any;
export function templateController(target: any): any;
export function bindable(nameOrConfigOrTarget: any, key: any, descriptor: any): any;
export function bindable(nameOrConfigOrTarget?: any, key?: any, descriptor?: any): any;
export function dynamicOptions(target: any): any;
export function sync(selectorOrConfig: any): any;
export function useShadowDOM(target: any): any;
Expand Down
2 changes: 1 addition & 1 deletion dist/system/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-depende
};

ConventionalViewStrategy.convertModuleIdToViewUrl = function convertModuleIdToViewUrl(moduleId) {
var id = moduleId.endsWith('.js') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
var id = moduleId.endsWith('.js') || moduleId.endsWith('.ts') ? moduleId.substring(0, moduleId.length - 3) : moduleId;
return id + '.html';
};

Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 0.13.2 (2015-07-07)


### 0.13.1 (2015-07-03)


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-templating",
"version": "0.13.1",
"version": "0.13.2",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 8f3b6d7

Please sign in to comment.