@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 CHANGED
File without changes
@@ -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
- const desiredWorkflows = profileWorkflows.filter((workflow) => ALL_WORKFLOWS.includes(workflow));
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.1",
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
- "scripts": {
42
- "lint": "eslint src/",
43
- "build": "node build.js",
44
- "dev": "tsc --watch",
45
- "dev:cli": "pnpm build && node bin/pastelsdd.js",
46
- "test": "vitest run",
47
- "test:watch": "vitest",
48
- "test:ui": "vitest --ui",
49
- "test:coverage": "vitest --coverage",
50
- "test:postinstall": "node scripts/postinstall.js",
51
- "prepare": "pnpm run build",
52
- "prepublishOnly": "pnpm run build",
53
- "postinstall": "node scripts/postinstall.js",
54
- "check:pack-version": "node scripts/pack-version-check.mjs",
55
- "release": "pnpm run release:ci",
56
- "release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
57
- "changeset": "changeset"
58
- },
59
- "engines": {
60
- "node": ">=20.19.0"
61
- },
62
- "devDependencies": {
63
- "@changesets/changelog-github": "^0.5.2",
64
- "@changesets/cli": "^2.27.7",
65
- "@types/node": "^24.2.0",
66
- "@vitest/ui": "^3.2.4",
67
- "eslint": "^9.39.2",
68
- "typescript": "^5.9.3",
69
- "typescript-eslint": "^8.50.1",
70
- "vitest": "^3.2.4"
71
- },
72
- "dependencies": {
73
- "@inquirer/core": "^10.2.2",
74
- "@inquirer/prompts": "^7.8.0",
75
- "chalk": "^5.5.0",
76
- "commander": "^14.0.0",
77
- "cross-spawn": "7.0.6",
78
- "fast-glob": "^3.3.3",
79
- "ora": "^8.2.0",
80
- "posthog-node": "^5.20.0",
81
- "yaml": "^2.8.2",
82
- "zod": "^4.0.17"
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
+ }