react-actionkit 0.1.0 → 0.1.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 +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -121,6 +121,6 @@ npm install
121
121
  npm run demo
122
122
  ```
123
123
 
124
- Then open `http://127.0.0.1:5173`.
124
+ Then open `http://localhost:5173`.
125
125
 
126
126
  The demo is intentionally styled in the example app only. The library does not ship CSS or visual components.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-actionkit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Headless React actions, keyboard shortcuts, and command palette state.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "scripts": {
33
33
  "build": "vite build",
34
34
  "ci": "npm run typecheck && npm run test && npm run build && npm audit",
35
- "demo": "vite --config examples/demo/vite.config.ts --host 127.0.0.1",
35
+ "demo": "vite --config examples/demo/vite.config.ts --host localhost",
36
36
  "test": "vitest run",
37
37
  "typecheck": "tsc --noEmit",
38
38
  "prepublishOnly": "npm run typecheck && npm run test && npm run build"