Skip to content

Commit 0a41366

Browse files
committed
release: v0.27.0-beta.0
1 parent d96a6ad commit 0a41366

File tree

26 files changed

+39
-39
lines changed

26 files changed

+39
-39
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gunshi-monorepo",
33
"description": "Monorepo for gunshi - Modern javascript command-line library",
44
"private": true,
5-
"version": "0.27.0-alpha.10",
5+
"version": "0.27.0-beta.0",
66
"author": {
77
"name": "kazuya kawaguchi",
88
"email": "[email protected]"

packages/bone/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "http://json-schema.org/draft-07/schema",
44
"name": "@gunshi/bone",
55
"description": "gunshi minimum",
6-
"version": "0.27.0-alpha.10",
6+
"version": "0.27.0-beta.0",
77
"license": "MIT",
88
"publish": {
99
"include": ["src/**/*.ts", "package.json", "jsr.json", "README.md", "CHANGELOG.md", "LICENSE"],

packages/bone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gunshi/bone",
33
"description": "gunshi minimum",
4-
"version": "0.27.0-alpha.10",
4+
"version": "0.27.0-beta.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

packages/definition/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "http://json-schema.org/draft-07/schema",
44
"name": "@gunshi/definition",
55
"description": "utilities for gunshi command definition",
6-
"version": "0.27.0-alpha.10",
6+
"version": "0.27.0-beta.0",
77
"license": "MIT",
88
"publish": {
99
"include": ["src/**/*.ts", "package.json", "jsr.json", "README.md", "CHANGELOG.md", "LICENSE"],

packages/definition/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gunshi/definition",
33
"description": "utilities for gunshi command definition",
4-
"version": "0.27.0-alpha.10",
4+
"version": "0.27.0-beta.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

packages/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@gunshi/docs",
33
"description": "Documentation for gunshi",
44
"private": true,
5-
"version": "0.27.0-alpha.10",
5+
"version": "0.27.0-beta.0",
66
"author": {
77
"name": "kazuya kawaguchi",
88
"email": "[email protected]"

packages/docs/src/guide/plugin/advanced.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ await cli(process.argv.slice(2), testCommand, {
150150

151151
Run comprehensive tests:
152152

153-
```bash
153+
```sh
154154
# Test help display
155155
node test-plugin.js test --help
156156

@@ -171,8 +171,8 @@ const debugPlugin = plugin({
171171

172172
setup: ctx => {
173173
console.log('[SETUP] Plugin loaded')
174-
console.log('[SETUP] Global options:', Array.from(ctx.globalOptions.keys()))
175-
console.log('[SETUP] Sub commands:', Array.from(ctx.subCommands.keys()))
174+
console.log('[SETUP] Global options:', [...ctx.globalOptions.keys()])
175+
console.log('[SETUP] Sub commands:', [...ctx.subCommands.keys()])
176176

177177
ctx.decorateCommand(baseRunner => async ctx => {
178178
console.log('[EXECUTE] Before command:', ctx.name)
@@ -689,7 +689,7 @@ const resourcePlugin = plugin({
689689
const resources: Array<{ dispose: () => void }> = []
690690

691691
const cleanup = () => {
692-
resources.forEach(r => r.dispose())
692+
for (const r of resources) r.dispose()
693693
resources.length = 0
694694
}
695695

packages/docs/src/guide/plugin/distribution.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ MAJOR.MINOR.PATCH
333333

334334
Maintain a CHANGELOG.md:
335335

336-
```markdown
336+
```md
337337
# Changelog
338338

339339
All notable changes to this project will be documented in this file.
@@ -402,7 +402,7 @@ Automate version management:
402402

403403
### Publishing Process
404404

405-
```bash
405+
```sh
406406
# Login to npm (first time only)
407407
npm login
408408

@@ -447,17 +447,17 @@ jobs:
447447
448448
### JSR Setup
449449
450-
1. **Create JSR account** at https://jsr.io
450+
1. **Create JSR account** at <https://jsr.io>
451451
2. **Configure authentication**:
452452
453-
```bash
453+
```sh
454454
# Authenticate with JSR
455455
deno login
456456
```
457457

458458
### Publishing Process
459459

460-
```bash
460+
```sh
461461
# Publish to JSR
462462
jsr publish
463463

@@ -494,7 +494,7 @@ jobs:
494494
495495
### README.md Template
496496
497-
```markdown
497+
```md
498498
# gunshi-plugin-myfeature
499499

500500
> MyFeature plugin for Gunshi CLI framework
@@ -543,7 +543,7 @@ plugins: [myPlugin()]
543543

544544
\`\`\`ts
545545
myPlugin({
546-
baseUrl: 'https://api.example.com',
546+
baseUrl: '<https://api.example.com>',
547547
timeout: 5000
548548
})
549549
\`\`\`
@@ -634,7 +634,7 @@ await cli(process.argv.slice(2), command, {
634634

635635
Always test the published package:
636636

637-
```bash
637+
```sh
638638
# Pack locally
639639
npm pack
640640

@@ -648,7 +648,7 @@ npm install ../path/to/gunshi-plugin-myfeature-1.0.0.tgz
648648

649649
Keep dependencies up to date:
650650

651-
```bash
651+
```sh
652652
# Check outdated packages
653653
npm outdated
654654

@@ -664,7 +664,7 @@ npm install
664664

665665
Regularly audit for vulnerabilities:
666666

667-
```bash
667+
```sh
668668
# Run security audit
669669
npm audit
670670

@@ -683,7 +683,7 @@ When deprecating a plugin:
683683
}
684684
```
685685

686-
```bash
686+
```sh
687687
# Deprecate on npm
688688
npm deprecate gunshi-plugin-old "Please use gunshi-plugin-new instead"
689689
```

packages/gunshi/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "http://json-schema.org/draft-07/schema",
44
"name": "@gunshi/gunshi",
55
"description": "Modern javascript command-line library",
6-
"version": "0.27.0-alpha.10",
6+
"version": "0.27.0-beta.0",
77
"license": "MIT",
88
"publish": {
99
"include": [

packages/gunshi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gunshi",
33
"description": "Modern javascript command-line library",
4-
"version": "0.27.0-alpha.10",
4+
"version": "0.27.0-beta.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)