@stackfactor/agent-utils 1.2.13 → 1.2.14

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 -0
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -300,3 +300,7 @@ The `config` object accepted by LangChain methods supports the following keys:
300
300
  ## License
301
301
 
302
302
  Not licensed — proprietary software of StackFactor Inc.
303
+
304
+ ## Development and release
305
+
306
+ See [docs/README.md](docs/README.md) — branch flow, how to cut a release, and troubleshooting.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.2.13",
6
+ "version": "1.2.14",
7
7
  "description": "",
8
8
  "main": "dist/cjs/index.js",
9
9
  "module": "dist/esm/index.js",
@@ -13,7 +13,12 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "clean": "rm -rf dist",
16
- "build": "npm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && echo '{\"type\":\"module\"}' > dist/esm/package.json"
16
+ "build": "npm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && echo '{\"type\":\"module\"}' > dist/esm/package.json",
17
+ "work:start": "bash scripts/work-start.sh",
18
+ "work:commit": "bash scripts/work-commit.sh",
19
+ "work:release": "bash scripts/release.sh",
20
+ "release": "bash scripts/release.sh",
21
+ "release:fanout": "bash scripts/release-fanout.sh"
17
22
  },
18
23
  "repository": {
19
24
  "type": "git",