Skip to content

Commit

Permalink
chore(all): prepare release 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 26, 2019
1 parent 42bd206 commit 31f6bff
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 2 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-bootstrapper",
"version": "2.3.1",
"version": "2.3.2",
"description": "Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.",
"keywords": [
"aurelia",
Expand Down
2 changes: 2 additions & 0 deletions dist/amd/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ define(['module', 'exports', 'aurelia-pal', 'aurelia-polyfills'], function (modu
}

function initializePal(loader) {
if (_aureliaPal.isInitialized) return Promise.resolve();

var type = void 0;

var isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
2 changes: 2 additions & 0 deletions dist/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ function createLoader() {
}

function initializePal(loader) {
if (isInitialized) return Promise.resolve();

let type;

const isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
2 changes: 2 additions & 0 deletions dist/commonjs/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ function createLoader() {
}

function initializePal(loader) {
if (_aureliaPal.isInitialized) return Promise.resolve();

var type = void 0;

var isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
2 changes: 2 additions & 0 deletions dist/es2015/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ function createLoader() {
}

function initializePal(loader) {
if (isInitialized) return Promise.resolve();

let type;

const isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
2 changes: 2 additions & 0 deletions dist/native-modules/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ function createLoader() {
}

function initializePal(loader) {
if (isInitialized) return Promise.resolve();

var type = void 0;

var isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
2 changes: 2 additions & 0 deletions dist/system/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ System.register(['aurelia-polyfills', 'aurelia-pal'], function (_export, _contex
}

function initializePal(loader) {
if (isInitialized) return Promise.resolve();

var type = void 0;

var isRenderer = isNodeLike && (process.type === 'renderer' || process.versions['node-webkit']);
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="2.3.2"></a>
## [2.3.2](https://github.com/aurelia/bootstrapper/compare/2.3.1...2.3.2) (2019-01-26)


### Bug Fixes

* avoid unnecessary pal loading when pal is already initialized ([429c261](https://github.com/aurelia/bootstrapper/commit/429c261)), closes [aurelia/cli#1019](https://github.com/aurelia/cli/issues/1019)



<a name="2.3.1"></a>
## [2.3.1](https://github.com/aurelia/bootstrapper/compare/2.3.0...2.3.1) (2018-12-01)

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-bootstrapper",
"version": "2.3.1",
"version": "2.3.2",
"description": "Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 31f6bff

Please sign in to comment.