Skip to content

Commit

Permalink
chroe(all): prepare release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 19, 2019
1 parent 9d65fd8 commit d9e7a2e
Show file tree
Hide file tree
Showing 9 changed files with 522 additions and 25 deletions.
18 changes: 9 additions & 9 deletions build/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ const configs = {
outputs: [
{ file: "dist/es2015/aurelia-store.js", format: "es" },
{
file: 'dist/umd/aurelia-store.js',
format: 'umd',
name: 'au.store',
file: "dist/umd/aurelia-store.js",
format: "umd",
name: "au.store",
globals: {
'aurelia-framework': 'au',
'aurelia-dependency-injection': 'au',
'aurelia-logging': 'au.LogManager',
'aurelia-pal': 'au',
'rxjs': 'rxjs',
'rxjs/operators': 'rxjs'
"aurelia-framework": "au",
"aurelia-dependency-injection": "au",
"aurelia-logging": "au.LogManager",
"aurelia-pal": "au",
"rxjs": "rxjs",
"rxjs/operators": "rxjs"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-store.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define('aurelia-store', ['exports', 'aurelia-pal', 'aurelia-logging', 'rxjs', 'aurelia-dependency-injection', 'rxjs/operators'], function (exports, aureliaPal, aureliaLogging, rxjs, aureliaDependencyInjection, operators) { 'use strict';
define('aurelia-store', ['exports', 'rxjs', 'aurelia-dependency-injection', 'aurelia-logging', 'aurelia-pal', 'rxjs/operators'], function (exports, rxjs, aureliaDependencyInjection, aureliaLogging, aureliaPal, operators) { 'use strict';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/aurelia-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

Object.defineProperty(exports, '__esModule', { value: true });

var aureliaPal = require('aurelia-pal');
var aureliaLogging = require('aurelia-logging');
var rxjs = require('rxjs');
var aureliaDependencyInjection = require('aurelia-dependency-injection');
var aureliaLogging = require('aurelia-logging');
var aureliaPal = require('aurelia-pal');
var operators = require('rxjs/operators');

/*! *****************************************************************************
Expand Down
8 changes: 4 additions & 4 deletions dist/es2015/aurelia-store.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { PLATFORM } from 'aurelia-pal';
import { Logger, getLogger } from 'aurelia-logging';
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
import { BehaviorSubject, Subscription, Observable } from 'rxjs';
import { Container } from 'aurelia-dependency-injection';
import { delay, skip, take } from 'rxjs/operators';
import { Logger, getLogger } from 'aurelia-logging';
import { PLATFORM } from 'aurelia-pal';
import { skip, take, delay } from 'rxjs/operators';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Expand Down
8 changes: 4 additions & 4 deletions dist/es2017/aurelia-store.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { PLATFORM } from 'aurelia-pal';
import { Logger, getLogger } from 'aurelia-logging';
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
import { BehaviorSubject, Subscription, Observable } from 'rxjs';
import { Container } from 'aurelia-dependency-injection';
import { delay, skip, take } from 'rxjs/operators';
import { Logger, getLogger } from 'aurelia-logging';
import { PLATFORM } from 'aurelia-pal';
import { skip, take, delay } from 'rxjs/operators';

function jump(state, n) {
if (!isStateHistory(state)) {
Expand Down
8 changes: 4 additions & 4 deletions dist/native-modules/aurelia-store.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { PLATFORM } from 'aurelia-pal';
import { Logger, getLogger } from 'aurelia-logging';
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
import { BehaviorSubject, Subscription, Observable } from 'rxjs';
import { Container } from 'aurelia-dependency-injection';
import { delay, skip, take } from 'rxjs/operators';
import { Logger, getLogger } from 'aurelia-logging';
import { PLATFORM } from 'aurelia-pal';
import { skip, take, delay } from 'rxjs/operators';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Expand Down
Loading

0 comments on commit d9e7a2e

Please sign in to comment.