Skip to content

Commit

Permalink
feat(ts): major version deployment
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
this introduces a breaking change due to the updated
dependency to TypeScript 3.0. This results generated type definitions
which require TS 3.x.x as a min.

fixes issue #53
  • Loading branch information
zewa666 committed Aug 9, 2018
1 parent db83186 commit cb1057b
Show file tree
Hide file tree
Showing 87 changed files with 420 additions and 208 deletions.
2 changes: 1 addition & 1 deletion dist/amd/aurelia-store.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 15 additions & 9 deletions dist/amd/decorator.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/decorator.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/history.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/logging.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export declare enum LogLevel {
info = "info",
log = "log",
warn = "warn",
error = "error",
error = "error"
}
export declare class LoggerIndexed extends Logger {
[key: string]: any;
Expand Down
9 changes: 6 additions & 3 deletions dist/amd/logging.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/logging.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/middleware.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface CallingAction {
export declare type Middleware<T> = (state: T, originalState?: T, settings?: any, action?: CallingAction) => T | Promise<T | undefined | false> | void | false;
export declare enum MiddlewarePlacement {
Before = "before",
After = "after",
After = "after"
}
export declare function logMiddleware<T>(state: T, _: T, settings?: any): void;
export declare function localStorageMiddleware<T>(state: T, _: T, settings?: any): void;
Expand Down
Loading

0 comments on commit cb1057b

Please sign in to comment.