@common-stack/core 0.6.1-alpha.3 → 0.6.1-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="node" />
|
|
2
2
|
import { IFeature2, IFeature2Shape } from '../interfaces';
|
|
3
3
|
declare class Feature2 implements IFeature2 {
|
|
4
4
|
readonly onAppCreate?: Array<(modules: IFeature2, entryModule: NodeModule) => Promise<any>>;
|
package/lib/envalid.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Resource } from 'i18next';
|
|
2
2
|
import { interfaces } from 'inversify';
|
|
3
3
|
import { IFeature2Shape } from './feature';
|
|
4
|
-
export
|
|
4
|
+
export type ILocalization = {
|
|
5
5
|
ns: string;
|
|
6
6
|
resources: Resource;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type ContainerFunc = (options?: any) => interfaces.ContainerModule;
|
|
9
9
|
/**
|
|
10
10
|
* Common Feature Shape
|
|
11
11
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/core",
|
|
3
|
-
"version": "0.6.1-alpha.
|
|
3
|
+
"version": "0.6.1-alpha.4",
|
|
4
4
|
"description": "Common core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"typescript": {
|
|
28
28
|
"definition": "lib/index.d.ts"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "8f1002595ef0da183fc26d37a4a185b9c94cfc76"
|
|
31
31
|
}
|