Skip to content

Commit

Permalink
chore(all): release 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Vheissu committed Aug 2, 2016
1 parent 63ca479 commit d41896c
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 63 deletions.
41 changes: 41 additions & 0 deletions dist/amd/aurelia-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
declare module "configure" {
import { Loader } from 'aurelia-loader';
export interface ConfigInterface {
}
export class Configure {
loader: Loader;
environment: string;
environments: any;
directory: string;
config_file: string;
cascade_mode: boolean;
private _config_object;
private _config_merge_object;
constructor(loader: Loader);
setDirectory(path: any): void;
setConfig(name: any): void;
setEnvironment(environment: any): void;
setEnvironments(environments?: boolean): void;
setCascadeMode(bool?: boolean): void;
readonly obj: ConfigInterface;
readonly config: string;
is(environment: any): boolean;
check(): void;
environmentEnabled(): boolean;
environmentExists(): boolean;
get(key: any, defaultValue?: any): any;
set(key: any, val: any): void;
merge(obj: any): void;
lazyMerge(obj: any): void;
setAll(obj: any): void;
getAll(): ConfigInterface;
loadConfig(): Promise<void>;
loadConfigFile(path: any, action: any): Promise<void>;
mergeConfigFile(path: any): Promise<void>;
}
}
declare module "index" {
import { Configure } from "configure";
export function configure(aurelia: any, configCallback: any): Promise<{}>;
export { Configure };
}
22 changes: 20 additions & 2 deletions dist/amd/configure.js → dist/amd/aurelia-configuration.js

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

1 change: 1 addition & 0 deletions dist/amd/aurelia-configuration.js.map

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

34 changes: 0 additions & 34 deletions dist/amd/configure.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion dist/amd/configure.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/amd/index.d.ts

This file was deleted.

19 changes: 0 additions & 19 deletions dist/amd/index.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/amd/index.js.map

This file was deleted.

Loading

0 comments on commit d41896c

Please sign in to comment.