core-mb 1.0.2 → 1.0.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.
package/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ Copyright (c) 2025 Marco Bytes Tech and ERP Hub Inc.
2
+
3
+ All rights reserved. This software is proprietary and intended for internal use only within Marco Bytes Tech and ERP Hub Inc.
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ export * from "./config";
1
2
  export * from "./date.helper";
2
3
  export * from "./security.helper";
package/dist/index.js CHANGED
@@ -14,5 +14,6 @@ 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
+ __exportStar(require("./config"), exports);
17
18
  __exportStar(require("./date.helper"), exports);
18
19
  __exportStar(require("./security.helper"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-mb",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Core utility functions for the MB ecosystem in TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "typescript"
20
20
  ],
21
21
  "author": "Marco Bytes",
22
- "license": "MIT",
22
+ "license": "SEE LICENSE IN LICENSE",
23
23
  "devDependencies": {
24
24
  "@types/jest": "^30.0.0",
25
25
  "@types/node": "^20.19.11",
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
+ export * from "./config"
1
2
  export * from "./date.helper"
2
3
  export * from "./security.helper"