Skip to content

Commit 1cd4125

Browse files
committed
chore(release): prepare v0.9.3 scoped npm package
1 parent bc3f502 commit 1cd4125

File tree

5 files changed

+62
-4
lines changed

5 files changed

+62
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on Keep a Changelog, and this project follows Semantic Versi
66

77
## [Unreleased]
88

9+
## [0.9.3] - 2026-03-30
10+
11+
- Renamed the npm package to `@dkfuh/orgscript` after npm rejected the unscoped `orgscript` name as too similar to an existing package.
12+
- Updated installation guidance to use `npm install -g @dkfuh/orgscript` while keeping the CLI command name `orgscript`.
13+
- Re-verified package and publish readiness for the scoped public npm path.
14+
915
## [0.9.2] - 2026-03-30
1016

1117
- Normalized npm publish metadata so `bin.orgscript` and `repository.url` no longer require npm auto-correction during publish.

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@ OrgScript is designed for operators, team leads, analysts, and engineers who nee
2525

2626
OrgScript requires Node.js `>=18`.
2727

28-
The CLI is not currently published on npm under `orgscript`, so use one of the repository-based installation paths below.
28+
The published npm package is scoped as `@dkfuh/orgscript`.
29+
30+
### Global install from npm
31+
32+
```bash
33+
npm install -g @dkfuh/orgscript
34+
```
35+
36+
That installs the CLI command as `orgscript`.
2937

3038
### Local repository setup
3139

docs/releases/v0.9.3.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# OrgScript v0.9.3
2+
3+
OrgScript v0.9.3 is a packaging correction release for npm distribution.
4+
5+
The unscoped package name `orgscript` was rejected by npm because it is too similar to an existing package. This release moves the package to the scoped name `@dkfuh/orgscript` while preserving the CLI command name `orgscript`.
6+
7+
## Highlights
8+
9+
- renamed the npm package to `@dkfuh/orgscript`
10+
- kept the installed CLI command name as `orgscript`
11+
- updated installation guidance for the scoped package
12+
- re-verified scoped public publish readiness
13+
14+
## Package distribution
15+
16+
- install from npm with:
17+
18+
```bash
19+
npm install -g @dkfuh/orgscript
20+
```
21+
22+
- publish publicly with:
23+
24+
```bash
25+
npm publish --access public
26+
```
27+
28+
## Verification
29+
30+
Confirmed on the release preparation state:
31+
32+
- `npm test`
33+
- `npm run check:all`
34+
- `npm pack --json`
35+
- `npm publish --dry-run --access public`
36+
- local global install test from the packaged tarball
37+
- `orgscript --version`
38+
- `orgscript check ./examples/craft-business-lead-to-order.orgs`
39+
40+
## Project status
41+
42+
OrgScript remains a human-readable, AI-friendly description language for business logic and operational systems.
43+
44+
v0.9.3 makes the npm distribution path viable under the maintainer-owned scoped package name.

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "orgscript-vscode",
33
"displayName": "OrgScript",
44
"description": "Minimal VS Code language support for OrgScript (.orgs) files.",
5-
"version": "0.9.2",
5+
"version": "0.9.3",
66
"publisher": "dkfuh",
77
"icon": "icon.png",
88
"repository": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "orgscript",
3-
"version": "0.9.2",
2+
"name": "@dkfuh/orgscript",
3+
"version": "0.9.3",
44
"description": "A human-readable, AI-friendly description language for business logic and operational systems.",
55
"license": "Apache-2.0",
66
"main": "./src/index.js",

0 commit comments

Comments
 (0)