@namigbit/config 0.0.1 → 0.0.2

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.
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './Env';
2
2
  export * from './getConfig';
3
+ export declare const test: () => void;
package/dist/index.js CHANGED
@@ -14,5 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.test = void 0;
17
18
  __exportStar(require("./Env"), exports);
18
19
  __exportStar(require("./getConfig"), exports);
20
+ const test = () => {
21
+ console.log('Hot realoding work');
22
+ };
23
+ exports.test = test;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namigbit/config",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Configuration module with validation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,7 +9,8 @@
9
9
  ],
10
10
  "scripts": {
11
11
  "build": "tsc",
12
- "build:watch": "tsc --watch"
12
+ "build:watch": "tsc --watch",
13
+ "yalc:watch": "tsc-watch --onSuccess \"yalc push\""
13
14
  },
14
15
  "peerDependencies": {
15
16
  "class-validator": "^0.14.0",