@hyperdrive.bot/bmad-workflow 1.0.2 → 1.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.
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperdrive.bot/bmad-workflow",
|
|
3
3
|
"description": "AI-driven development workflow orchestration CLI for BMAD projects",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "DevSquad",
|
|
7
7
|
"email": "marcelo@devsquad.email",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"oclif": "^4",
|
|
57
57
|
"prettier": "^3.6.2",
|
|
58
58
|
"proxyquire": "^2.1.3",
|
|
59
|
-
"shx": "^0.3.3",
|
|
60
59
|
"sinon": "^17.0.1",
|
|
61
60
|
"ts-node": "^10.9.2",
|
|
62
61
|
"typescript": "^5"
|
|
@@ -101,18 +100,18 @@
|
|
|
101
100
|
"registry": "https://registry.npmjs.org/"
|
|
102
101
|
},
|
|
103
102
|
"scripts": {
|
|
104
|
-
"build": "
|
|
103
|
+
"build": "rm -rf dist && tsc -b",
|
|
105
104
|
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
|
|
106
105
|
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
|
|
107
106
|
"lint": "eslint",
|
|
108
107
|
"lint:fix": "eslint --fix",
|
|
109
|
-
"postpack": "
|
|
110
|
-
"prepack": "npm run build && oclif manifest",
|
|
108
|
+
"postpack": "rm -f oclif.manifest.json",
|
|
109
|
+
"prepack": "npm run build && npx oclif manifest || true",
|
|
111
110
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
112
111
|
"test:integration": "mocha --forbid-only \"test/e2e/pipelined-workflow.test.ts\"",
|
|
113
112
|
"test:coverage": "c8 npm run test",
|
|
114
113
|
"test:watch": "mocha --watch \"test/**/*.test.ts\"",
|
|
115
|
-
"version": "
|
|
114
|
+
"version": "npx oclif readme && git add README.md || true",
|
|
116
115
|
"watch": "tsc -b --watch"
|
|
117
116
|
},
|
|
118
117
|
"types": "dist/index.d.ts"
|