@pixpilot/scaffoldfy-configs 0.30.0 → 0.31.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pixpilot/scaffoldfy-configs
2
2
 
3
+ ## 0.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - add conditional prompts for Next.js and Expo visual-test values
8
+
3
9
  ## 0.30.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy-configs",
3
3
  "type": "module",
4
- "version": "0.30.0",
4
+ "version": "0.31.0",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -25,8 +25,8 @@
25
25
  "eslint": "^9.38.0",
26
26
  "@internal/eslint-config": "0.3.0",
27
27
  "@internal/prettier-config": "0.0.1",
28
- "@internal/tsdown-config": "0.1.0",
29
28
  "@internal/vitest-config": "0.1.0",
29
+ "@internal/tsdown-config": "0.1.0",
30
30
  "@pixpilot/scaffoldfy": "0.51.0"
31
31
  },
32
32
  "prettier": "@internal/prettier-config",
@@ -26,6 +26,24 @@
26
26
  "value": "expo"
27
27
  }
28
28
  ]
29
+ },
30
+ {
31
+ "id": "nextjsVisualTest",
32
+ "type": "input",
33
+ "message": "Next.js visual-test value:",
34
+ "enabled": {
35
+ "type": "condition",
36
+ "value": "workspaceApps.includes('nextjs')"
37
+ }
38
+ },
39
+ {
40
+ "id": "expoVisualTest",
41
+ "type": "input",
42
+ "message": "Expo visual-test value:",
43
+ "enabled": {
44
+ "type": "condition",
45
+ "value": "workspaceApps.includes('expo')"
46
+ }
29
47
  }
30
48
  ],
31
49
  "tasks": [