asyar-sdk 1.3.0 → 1.3.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 +2 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -69,17 +69,9 @@ Asyar-Project/
69
69
 
70
70
  After editing SDK source, run `pnpm run build:all` — changes are instantly available to all linked packages. No manual copying needed.
71
71
 
72
- ### Releasing to npm
72
+ ### Releasing
73
73
 
74
- ```bash
75
- node scripts/release.js patch # or: minor, major
76
- ```
77
-
78
- This bumps the version in `package.json`, commits, tags, and pushes. It also updates the SDK version fallback in the Asyar app (if present as a sibling repo). Then publish to npm:
79
-
80
- ```bash
81
- pnpm publish
82
- ```
74
+ See [docs/RELEASING.md](docs/RELEASING.md) for instructions on how to version and publish new SDK releases.
83
75
 
84
76
  ## Usage
85
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asyar-sdk",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "asyar": "./dist/cli/index.js"
@@ -11,7 +11,7 @@
11
11
  "build:cli": "tsc --project tsconfig.cli.json",
12
12
  "build:all": "npm run build && npm run build:cli",
13
13
  "prepare": "npm run build:all",
14
- "test": "jest",
14
+ "test": "echo \"No tests specified\"",
15
15
  "lint": "eslint src --ext .ts",
16
16
  "watch": "tsc --watch",
17
17
  "release": "node scripts/release.js"