workgraph 0.0.2 → 0.0.3

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 +4 -2
package/README.md CHANGED
@@ -335,6 +335,10 @@ Changes to root configuration files trigger a rebuild of all projects:
335
335
  - `tsconfig.json`
336
336
  - `tsconfig.base.json`
337
337
 
338
+ ## Publishing
339
+
340
+ See [RELEASING.md](./RELEASING.md) for publishing instructions.
341
+
338
342
  ## License
339
343
 
340
344
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workgraph",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Lightweight workspace dependency graph and parallel build orchestrator for monorepos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,9 @@
10
10
  "scripts": {
11
11
  "build": "tsc",
12
12
  "dev": "tsc --watch",
13
- "prepublishOnly": "npm run build"
13
+ "prepublishOnly": "npm run build",
14
+ "version": "npm run build && git add -A",
15
+ "postversion": "git push --follow-tags"
14
16
  },
15
17
  "keywords": [
16
18
  "monorepo",