@heiwa4126/hello5 0.0.1 → 0.0.2-rc.1
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 +10 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ TypeScript hello world library with dual ES modules/CommonJS support. Features G
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
+
pnpm add @heiwa4126/hello5
|
|
19
|
+
# or
|
|
18
20
|
npm install @heiwa4126/hello5
|
|
19
21
|
```
|
|
20
22
|
|
|
@@ -58,16 +60,16 @@ heiwa4126-hello5
|
|
|
58
60
|
|
|
59
61
|
```bash
|
|
60
62
|
# Install dependencies
|
|
61
|
-
|
|
63
|
+
pnpm install
|
|
62
64
|
|
|
63
65
|
# Build the project
|
|
64
|
-
|
|
66
|
+
pnpm run build
|
|
65
67
|
|
|
66
68
|
# Run tests
|
|
67
|
-
|
|
69
|
+
pnpm test
|
|
68
70
|
|
|
69
71
|
# Clean build artifacts
|
|
70
|
-
|
|
72
|
+
pnpm run clean
|
|
71
73
|
```
|
|
72
74
|
|
|
73
75
|
## Build Output
|
|
@@ -78,10 +80,10 @@ The project builds to both ES modules and CommonJS formats in a flat structure:
|
|
|
78
80
|
|
|
79
81
|
## Scripts
|
|
80
82
|
|
|
81
|
-
- `
|
|
82
|
-
- `
|
|
83
|
-
- `
|
|
84
|
-
- `
|
|
83
|
+
- `pnpm run build` - Build both ESM and CJS versions
|
|
84
|
+
- `pnpm run test:watch` - Run tests in watch mode
|
|
85
|
+
- `pnpm test` - Run tests once
|
|
86
|
+
- `pnpm run clean` - Remove build artifacts
|
|
85
87
|
|
|
86
88
|
## License
|
|
87
89
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heiwa4126/hello5",
|
|
3
|
-
"version": "0.0.1",
|
|
3
|
+
"version": "0.0.2-rc.1",
|
|
4
4
|
"description": "TypeScript hello world library with dual ES modules/CommonJS support. Features GitHub Actions trusted publishing to npmjs with Sigstore attestation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/hello.cjs",
|