@eldrforge/tree-execution 0.1.4 → 0.1.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.
- package/LICENSE +1 -1
- package/README.md +4 -4
- package/package.json +8 -8
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1525,7 +1525,7 @@ Contributions are welcome! Please follow these guidelines:
|
|
|
1525
1525
|
|
|
1526
1526
|
```bash
|
|
1527
1527
|
# Setup development environment
|
|
1528
|
-
git clone https://github.com/
|
|
1528
|
+
git clone https://github.com/grunnverk/tree-execution.git
|
|
1529
1529
|
cd tree-execution
|
|
1530
1530
|
npm install
|
|
1531
1531
|
|
|
@@ -1554,12 +1554,12 @@ npm run lint
|
|
|
1554
1554
|
|
|
1555
1555
|
## License
|
|
1556
1556
|
|
|
1557
|
-
MIT ©
|
|
1557
|
+
MIT © Tim O'Brien
|
|
1558
1558
|
|
|
1559
1559
|
## Links
|
|
1560
1560
|
|
|
1561
|
-
- **GitHub**: https://github.com/
|
|
1562
|
-
- **Issues**: https://github.com/
|
|
1561
|
+
- **GitHub**: https://github.com/grunnverk/tree-execution
|
|
1562
|
+
- **Issues**: https://github.com/grunnverk/tree-execution/issues
|
|
1563
1563
|
- **npm**: https://www.npmjs.com/package/@eldrforge/tree-execution
|
|
1564
1564
|
|
|
1565
1565
|
## Related Projects
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eldrforge/tree-execution",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Parallel execution framework and tree orchestration for monorepo workflows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"recovery",
|
|
25
25
|
"checkpoint"
|
|
26
26
|
],
|
|
27
|
-
"author": "
|
|
27
|
+
"author": "Tim O'Brien <tobrien@discursive.com>",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/
|
|
31
|
+
"url": "git+https://github.com/grunnverk/tree-execution.git"
|
|
32
32
|
},
|
|
33
33
|
"bugs": {
|
|
34
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/grunnverk/tree-execution/issues"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://github.com/
|
|
36
|
+
"homepage": "https://github.com/grunnverk/tree-execution#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@eldrforge/tree-core": "^0.1.
|
|
39
|
-
"@eldrforge/git-tools": "^0.1.
|
|
40
|
-
"@eldrforge/shared": "^0.1.
|
|
38
|
+
"@eldrforge/tree-core": "^0.1.6",
|
|
39
|
+
"@eldrforge/git-tools": "^0.1.17",
|
|
40
|
+
"@eldrforge/shared": "^0.1.7"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/eslintrc": "^3.2.0",
|