@leyyo/type 1.3.4 → 1.3.5
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/internal.d.ts +1 -1
- package/dist/internal.js +2 -1
- package/package.json +3 -2
package/dist/internal.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const FQN
|
|
1
|
+
export declare const NME: string, FQN: string, VER: string, CNF: import("@leyyo/common").LeyyoConfig;
|
package/dist/internal.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { sysAll } from '@leyyo/common';
|
|
2
|
+
export const { pck: { name: NME, fqn: FQN, version: VER }, config: CNF } = sysAll(import.meta.url);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leyyo/type",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "Leyyo type library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"type",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"clear": "rimraf dist",
|
|
27
27
|
"lint": "eslint src/**/*.ts",
|
|
28
28
|
"asset": "node -r ts-node/register commands/assets.js",
|
|
29
|
+
"foretell": "node -r ts-node/register commands/build-lazy.js",
|
|
29
30
|
"build": "npm run clear && tsc && npm run asset",
|
|
30
31
|
"test": "npx jest --config=jest.json --clearCache && npx jest --config=jest.json --verbose",
|
|
31
32
|
"test:watch": "jest --watch --config=jest.json",
|
|
@@ -56,6 +57,6 @@
|
|
|
56
57
|
"typescript": "^5.7.3"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@leyyo/common": "^1.3.
|
|
60
|
+
"@leyyo/common": "^1.3.12"
|
|
60
61
|
}
|
|
61
62
|
}
|