@yyds-lang/utils 0.0.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/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # vite-plus-starter
2
+
3
+ A starter for creating a Vite Plus project.
4
+
5
+ ## Development
6
+
7
+ - Install dependencies:
8
+
9
+ ```bash
10
+ vp install
11
+ ```
12
+
13
+ - Run the unit tests:
14
+
15
+ ```bash
16
+ vp test
17
+ ```
18
+
19
+ - Build the library:
20
+
21
+ ```bash
22
+ vp pack
23
+ ```
@@ -0,0 +1,4 @@
1
+ //#region src/runtime/fn.d.ts
2
+ declare function fn(): string;
3
+ //#endregion
4
+ export { fn as t };
@@ -0,0 +1,6 @@
1
+ //#region src/runtime/fn.ts
2
+ function fn() {
3
+ return "Hello, tsdown!";
4
+ }
5
+ //#endregion
6
+ export { fn as t };
@@ -0,0 +1,2 @@
1
+ import { t as fn } from "./fn-Ccm7JRlf.mjs";
2
+ export { fn };
package/dist/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { t as fn } from "./fn-lHSl6gPp.mjs";
2
+ export { fn };
@@ -0,0 +1,2 @@
1
+ import { t as fn } from "./fn-Ccm7JRlf.mjs";
2
+ export { fn };
package/dist/types.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { t as fn } from "./fn-lHSl6gPp.mjs";
2
+ export { fn };
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@yyds-lang/utils",
3
+ "version": "0.0.0",
4
+ "description": "Shared utility helpers for yyds-lang workspace.",
5
+ "license": "MIT",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "type": "module",
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "devDependencies": {
14
+ "@types/node": "^25.6.2",
15
+ "@typescript/native-preview": "7.0.0-dev.20260509.2",
16
+ "bumpp": "^11.1.0",
17
+ "typescript": "^6.0.3",
18
+ "vite-plus": "^0.1.20"
19
+ },
20
+ "exports": {
21
+ ".": "./dist/index.mjs",
22
+ "./types": "./dist/types.mjs",
23
+ "./package.json": "./package.json"
24
+ },
25
+ "scripts": {
26
+ "build": "vp pack",
27
+ "dev": "vp pack --watch",
28
+ "test": "vp test",
29
+ "check": "vp check"
30
+ }
31
+ }