@thiagodiogo/pastelsdd 1.0.1 → 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/bin/pastelsdd.js +0 -0
- package/dist/core/update.js +4 -1
- package/package.json +82 -84
package/bin/pastelsdd.js
CHANGED
|
File without changes
|
package/dist/core/update.js
CHANGED
|
@@ -57,7 +57,10 @@ export class UpdateCommand {
|
|
|
57
57
|
const profile = globalConfig.profile ?? 'core';
|
|
58
58
|
const delivery = globalConfig.delivery ?? 'both';
|
|
59
59
|
const profileWorkflows = getProfileWorkflows(profile, globalConfig.workflows);
|
|
60
|
-
|
|
60
|
+
// Trello workflows are always included regardless of profile, mirroring InitCommand behavior.
|
|
61
|
+
const TRELLO_WORKFLOWS = ['trello-setup', 'task', 'draft'];
|
|
62
|
+
const workflowsSet = new Set([...profileWorkflows, ...TRELLO_WORKFLOWS]);
|
|
63
|
+
const desiredWorkflows = [...workflowsSet].filter((workflow) => ALL_WORKFLOWS.includes(workflow));
|
|
61
64
|
const shouldGenerateSkills = delivery !== 'commands';
|
|
62
65
|
const shouldGenerateCommands = delivery !== 'skills';
|
|
63
66
|
// 4. Detect and handle legacy artifacts + upgrade legacy tools using effective config
|
package/package.json
CHANGED
|
@@ -1,84 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@thiagodiogo/pastelsdd",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "AI-native system for spec-driven development",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pastelsdd",
|
|
7
|
-
"specs",
|
|
8
|
-
"cli",
|
|
9
|
-
"ai",
|
|
10
|
-
"development"
|
|
11
|
-
],
|
|
12
|
-
"homepage": "https://github.com/eipastel/pastelsdd",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://github.com/eipastel/pastelsdd"
|
|
16
|
-
},
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"author": "thiagodiogo",
|
|
19
|
-
"type": "module",
|
|
20
|
-
"publishConfig": {
|
|
21
|
-
"access": "public"
|
|
22
|
-
},
|
|
23
|
-
"exports": {
|
|
24
|
-
".": {
|
|
25
|
-
"types": "./dist/index.d.ts",
|
|
26
|
-
"default": "./dist/index.js"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"bin": {
|
|
30
|
-
"pastelsdd": "./bin/pastelsdd.js"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"bin",
|
|
35
|
-
"schemas",
|
|
36
|
-
"scripts/postinstall.js",
|
|
37
|
-
"!dist/**/*.test.js",
|
|
38
|
-
"!dist/**/__tests__",
|
|
39
|
-
"!dist/**/*.map"
|
|
40
|
-
],
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@thiagodiogo/pastelsdd",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "AI-native system for spec-driven development",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pastelsdd",
|
|
7
|
+
"specs",
|
|
8
|
+
"cli",
|
|
9
|
+
"ai",
|
|
10
|
+
"development"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/eipastel/pastelsdd",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/eipastel/pastelsdd"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "thiagodiogo",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"bin": {
|
|
30
|
+
"pastelsdd": "./bin/pastelsdd.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"bin",
|
|
35
|
+
"schemas",
|
|
36
|
+
"scripts/postinstall.js",
|
|
37
|
+
"!dist/**/*.test.js",
|
|
38
|
+
"!dist/**/__tests__",
|
|
39
|
+
"!dist/**/*.map"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20.19.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@changesets/changelog-github": "^0.5.2",
|
|
46
|
+
"@changesets/cli": "^2.27.7",
|
|
47
|
+
"@types/node": "^24.2.0",
|
|
48
|
+
"@vitest/ui": "^3.2.4",
|
|
49
|
+
"eslint": "^9.39.2",
|
|
50
|
+
"typescript": "^5.9.3",
|
|
51
|
+
"typescript-eslint": "^8.50.1",
|
|
52
|
+
"vitest": "^3.2.4"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@inquirer/core": "^10.2.2",
|
|
56
|
+
"@inquirer/prompts": "^7.8.0",
|
|
57
|
+
"chalk": "^5.5.0",
|
|
58
|
+
"commander": "^14.0.0",
|
|
59
|
+
"cross-spawn": "7.0.6",
|
|
60
|
+
"fast-glob": "^3.3.3",
|
|
61
|
+
"ora": "^8.2.0",
|
|
62
|
+
"posthog-node": "^5.20.0",
|
|
63
|
+
"yaml": "^2.8.2",
|
|
64
|
+
"zod": "^4.0.17"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"lint": "eslint src/",
|
|
68
|
+
"build": "node build.js",
|
|
69
|
+
"dev": "tsc --watch",
|
|
70
|
+
"dev:cli": "pnpm build && node bin/pastelsdd.js",
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"test:ui": "vitest --ui",
|
|
74
|
+
"test:coverage": "vitest --coverage",
|
|
75
|
+
"test:postinstall": "node scripts/postinstall.js",
|
|
76
|
+
"postinstall": "node scripts/postinstall.js",
|
|
77
|
+
"check:pack-version": "node scripts/pack-version-check.mjs",
|
|
78
|
+
"release": "pnpm run release:ci",
|
|
79
|
+
"release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
|
|
80
|
+
"changeset": "changeset"
|
|
81
|
+
}
|
|
82
|
+
}
|