workspace-utils 1.0.6 → 1.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workspace-utils",
3
- "version": "1.0.6",
3
+ "version": "1.1.0",
4
4
  "description": "A CLI tool to orchestrate scripts across monorepo workspaces (Bun, pnpm, npm) with parallel execution and dependency-aware builds.",
5
5
  "module": "index.ts",
6
6
  "type": "module",
package/dist/package.json DELETED
@@ -1,57 +0,0 @@
1
- {
2
- "name": "workspace-utils",
3
- "version": "1.0.6",
4
- "description": "A CLI tool to orchestrate scripts across monorepo workspaces (Bun, pnpm, npm) with parallel execution and dependency-aware builds.",
5
- "module": "index.ts",
6
- "type": "module",
7
- "files": [
8
- "dist/"
9
- ],
10
- "bin": {
11
- "workspace-utils": "./dist/index.js",
12
- "wsu": "./dist/index.js"
13
- },
14
- "scripts": {
15
- "build": "bun run build.ts",
16
- "dev": "bun run index.ts",
17
- "prepublishOnly": "bun run build",
18
- "format": "prettier --write .",
19
- "format:check": "prettier --check .",
20
- "test": "bun test",
21
- "test:watch": "bun test --watch",
22
- "docs:build": "cd docs && mdbook build",
23
- "docs:serve": "cd docs && mdbook serve",
24
- "docs:watch": "cd docs && mdbook serve --open"
25
- },
26
- "keywords": [
27
- "monorepo",
28
- "workspaces",
29
- "bun",
30
- "pnpm",
31
- "npm",
32
- "cli",
33
- "parallel",
34
- "dependency-graph",
35
- "build-orchestration"
36
- ],
37
- "author": "Torsten Dittmann",
38
- "license": "MIT",
39
- "dependencies": {
40
- "commander": "^11.1.0",
41
- "fast-glob": "^3.3.2",
42
- "picocolors": "^1.0.0",
43
- "yaml": "^2.8.1"
44
- },
45
- "devDependencies": {
46
- "@types/bun": "^1.2.20",
47
- "@types/node": "^20.10.0",
48
- "prettier": "^3.6.2"
49
- },
50
- "peerDependencies": {
51
- "typescript": "^5"
52
- },
53
- "engines": {
54
- "node": ">=18",
55
- "bun": ">=1.0.0"
56
- }
57
- }