@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="@types/node" />
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,5 +1,5 @@
1
1
  import * as envalid from 'envalid';
2
- export declare type EnvalidConfig = {
2
+ export type EnvalidConfig = {
3
3
  required: boolean;
4
4
  devRequired: boolean;
5
5
  };
@@ -1,11 +1,11 @@
1
1
  import { Resource } from 'i18next';
2
2
  import { interfaces } from 'inversify';
3
3
  import { IFeature2Shape } from './feature';
4
- export declare type ILocalization = {
4
+ export type ILocalization = {
5
5
  ns: string;
6
6
  resources: Resource;
7
7
  };
8
- export declare type ContainerFunc = (options?: any) => interfaces.ContainerModule;
8
+ export type ContainerFunc = (options?: any) => interfaces.ContainerModule;
9
9
  /**
10
10
  * Common Feature Shape
11
11
  */
@@ -1,4 +1,4 @@
1
- /// <reference types="@types/node" />
1
+ /// <reference types="node" />
2
2
  /**
3
3
  * @param Feature2Shape
4
4
  * @description Shape of the Feature2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/core",
3
- "version": "0.6.1-alpha.3",
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": "8c23bfd49fb16286e23bf5d3d2dce2deb724b275"
30
+ "gitHead": "8f1002595ef0da183fc26d37a4a185b9c94cfc76"
31
31
  }