Skip to content

Commit 0d67d4b

Browse files
chore(all): prepare release 0.13.2
1 parent 19109dc commit 0d67d4b

File tree

8 files changed

+10
-7
lines changed

8 files changed

+10
-7
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-framework",
3-
"version": "0.13.1",
3+
"version": "0.13.2",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

dist/amd/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ define(['exports', 'core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-de
1717

1818
function loadPlugin(aurelia, loader, info) {
1919
logger.debug('Loading plugin ' + info.moduleId + '.');
20-
aurelia.currentPluginId = info.moduleId.endsWith('.js') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
20+
aurelia.currentPluginId = info.moduleId.endsWith('.js') || info.moduleId.endsWith('.ts') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
2121

2222
return loader.loadModule(info.moduleId).then(function (m) {
2323
if ('configure' in m) {

dist/commonjs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var logger = TheLogManager.getLogger('aurelia');
3232

3333
function loadPlugin(aurelia, loader, info) {
3434
logger.debug('Loading plugin ' + info.moduleId + '.');
35-
aurelia.currentPluginId = info.moduleId.endsWith('.js') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
35+
aurelia.currentPluginId = info.moduleId.endsWith('.js') || info.moduleId.endsWith('.ts') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
3636

3737
return loader.loadModule(info.moduleId).then(function (m) {
3838
if ('configure' in m) {

dist/es6/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var logger = TheLogManager.getLogger('aurelia');
1010

1111
function loadPlugin(aurelia, loader, info){
1212
logger.debug(`Loading plugin ${info.moduleId}.`);
13-
aurelia.currentPluginId = info.moduleId.endsWith('.js') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
13+
aurelia.currentPluginId = (info.moduleId.endsWith('.js') || info.moduleId.endsWith('.ts')) ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
1414

1515
return loader.loadModule(info.moduleId).then(m => {
1616
if('configure' in m){

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var logger = TheLogManager.getLogger('aurelia');
1010

1111
function loadPlugin(aurelia, loader, info){
1212
logger.debug(`Loading plugin ${info.moduleId}.`);
13-
aurelia.currentPluginId = info.moduleId.endsWith('.js') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
13+
aurelia.currentPluginId = (info.moduleId.endsWith('.js') || info.moduleId.endsWith('.ts')) ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
1414

1515
return loader.loadModule(info.moduleId).then(m => {
1616
if('configure' in m){

dist/system/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ System.register(['core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-depe
77

88
function loadPlugin(aurelia, loader, info) {
99
logger.debug('Loading plugin ' + info.moduleId + '.');
10-
aurelia.currentPluginId = info.moduleId.endsWith('.js') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
10+
aurelia.currentPluginId = info.moduleId.endsWith('.js') || info.moduleId.endsWith('.ts') ? info.moduleId.substring(0, info.moduleId.length - 3) : info.moduleId;
1111

1212
return loader.loadModule(info.moduleId).then(function (m) {
1313
if ('configure' in m) {

doc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.13.2 (2015-07-07)
2+
3+
14
### 0.13.1 (2015-07-03)
25

36

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-framework",
3-
"version": "0.13.1",
3+
"version": "0.13.2",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)