woodsportal-client-sdk 4.0.4-dev.5 → 4.0.4-dev.6

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 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -27,6 +27,8 @@ See [`src/test/README.md`](src/test/README.md). Run tests with `npm test`.
27
27
 
28
28
  **Contributors:** [docs/DEVELOPER-GUIDE.md](./docs/DEVELOPER-GUIDE.md) · [CONTRIBUTING.md](./CONTRIBUTING.md)
29
29
 
30
+ Monorepo watch rebuild: `yarn local` (or `npm run local`) in this repo — same script name as client/admin, but **library watch only** (no Vite dev server). See the developer guide for the two-terminal workflow.
31
+
30
32
  ---
31
33
 
32
34
  ## Production checklist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "woodsportal-client-sdk",
3
- "version": "4.0.4-dev.5",
3
+ "version": "4.0.4-dev.6",
4
4
  "description": "Official TypeScript/JavaScript SDK for WoodsPortal API - Authentication, user management, pipelines, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -45,8 +45,9 @@
45
45
  "registry": "https://registry.npmjs.org/"
46
46
  },
47
47
  "scripts": {
48
- "dev": "npm run dev:watch",
49
- "dev:watch": "node scripts/dev-watch.mjs",
48
+ "local": "node scripts/dev-watch.mjs",
49
+ "dev": "npm run local",
50
+ "dev:watch": "npm run local",
50
51
  "start": "nodemon --watch src/main --ext ts --exec tsx src/main/index.ts",
51
52
  "clean": "rimraf dist",
52
53
  "build": "npm run clean && tsup",