@youbamj/tree 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +2 -8
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,13 +1,7 @@
1
1
  # @youbamj/tree
2
2
 
3
- <p>
4
- <a href="https://www.npmjs.com/package/@youbamj/tree">
5
- <img src="https://img.shields.io/npm/v/@youbamj/tree" alt="NPM Version" />
6
- </a>
7
- <a href="https://www.npmjs.com/package/@youbamj/tree">
8
- <img src="https://img.shields.io/npm/l/@youbamj/tree" alt="License" />
9
- </a>
10
- </p>
3
+ [![npm version](https://img.shields.io/npm/v/%40youbamj%2Ftree?logo=npm&cacheSeconds=300)](https://www.npmjs.com/package/%40youbamj%2Ftree)
4
+ [![license](https://img.shields.io/npm/l/%40youbamj%2Ftree?cacheSeconds=300)](./LICENSE)
11
5
 
12
6
  `@youbamj/tree` is a modern TypeScript + Bun package to render directory trees and custom object trees.
13
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youbamj/tree",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Render directory and object trees in a clean, modern TypeScript package with CLI support.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -18,7 +18,7 @@
18
18
  "node": ">=18"
19
19
  },
20
20
  "bin": {
21
- "ytree": "./dist/cli.js"
21
+ "ytree": "dist/cli.js"
22
22
  },
23
23
  "exports": {
24
24
  ".": {
@@ -43,7 +43,7 @@
43
43
  "prepare": "husky",
44
44
  "changeset": "changeset",
45
45
  "version-packages": "changeset version",
46
- "release": "npm publish --provenance"
46
+ "release": "changeset publish --provenance"
47
47
  },
48
48
  "lint-staged": {
49
49
  "*.{ts,tsx,js,jsx,json,md}": ["biome check --write"]