@nous-research/ui 0.13.1 → 0.13.2

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 +4 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -53,9 +53,12 @@ pnpm dev # next dev on http://localhost:3000 → redirects to /ds
53
53
 
54
54
  ```
55
55
  pnpm build # tsc → dist/ + copies css / fonts / assets
56
- pnpm release # runs scripts/release.sh (must be on main, clean tree)
57
56
  ```
58
57
 
58
+ releases are published automatically when PRs merge to `main`. the github
59
+ workflow bumps the package version from the merged PR labels (`major`, `minor`,
60
+ or `patch`), pushes the tag, and publishes to npm via trusted publishing.
61
+
59
62
  the published tarball only ships `dist/` and `README.md` (see `files` in
60
63
  `package.json`). `.d.ts.map` + inline sources are emitted so consumers can
61
64
  "go to definition" straight into the TypeScript source.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nous-research/ui",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "sideEffects": [
@@ -42,7 +42,8 @@
42
42
  "build": "rm -rf dist && tsc -p tsconfig.build.json && cp -r src/assets dist/assets && cp -r src/fonts dist/fonts && cd src && find . -name '*.css' -exec sh -c 'mkdir -p \"../dist/$(dirname \"$1\")\" && cp \"$1\" \"../dist/$1\"' _ {} \\;",
43
43
  "build:watch": "pnpm build && tsc -p tsconfig.build.json --watch --preserveWatchOutput",
44
44
  "build-storybook": "storybook build -o storybook-static",
45
- "release": "./scripts/release.sh"
45
+ "test": "pnpm type-check",
46
+ "type-check": "tsc -p tsconfig.build.json --noEmit"
46
47
  },
47
48
  "dependencies": {
48
49
  "@nanostores/react": "^1.0.0",