zero-com 1.3.0 → 1.4.0
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/.claude/settings.local.json +8 -0
- package/index.d.ts +1 -0
- package/{lib/index.js → index.js} +1 -1
- package/package.json +3 -2
- package/tsconfig.build.json +5 -0
- package/tsconfig.json +5 -2
- package/lib/index.d.ts +0 -1
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/runtime';
|
|
@@ -14,4 +14,4 @@ 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("./runtime"), exports);
|
|
17
|
+
__exportStar(require("./lib/runtime"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zero-com",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": "https://github.com/yosbelms/zero-com",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"client"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "npx tsc -d",
|
|
15
|
+
"build": "npx tsc -p tsconfig.build.json -d",
|
|
16
16
|
"test": "vitest run",
|
|
17
17
|
"test:watch": "vitest",
|
|
18
18
|
"clean": "find . -type f \\( -name \"*.js\" -o -name \"*.js.map\" -o -name \"*.d.ts\" -o -name \"*.d.ts.map\" \\) | grep -v \"./node_modules\" | xargs rm",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"ts-morph": "^26.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
+
"@types/node": "^25.0.10",
|
|
29
30
|
"@types/webpack": "^5.28.5",
|
|
30
31
|
"rollup": "^4.52.5",
|
|
31
32
|
"typescript": "^5.8.3",
|
package/tsconfig.json
CHANGED
|
@@ -103,10 +103,13 @@
|
|
|
103
103
|
/* Completeness */
|
|
104
104
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
105
105
|
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
|
|
106
|
+
"types": ["node"],
|
|
106
107
|
"paths": {
|
|
107
108
|
"zero-com": [
|
|
108
|
-
"./
|
|
109
|
+
"./index.ts"
|
|
109
110
|
]
|
|
110
111
|
}
|
|
111
|
-
}
|
|
112
|
+
},
|
|
113
|
+
"include": ["index.ts", "lib/**/*", "test/**/*"],
|
|
114
|
+
"exclude": ["node_modules"]
|
|
112
115
|
}
|
package/lib/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './runtime';
|