@pixpilot/scaffoldfy 0.19.2 → 0.19.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/dist/index.d.cts CHANGED
@@ -134,7 +134,6 @@ interface BasePrompt {
134
134
  interface InputPrompt extends BasePrompt {
135
135
  type: 'input' | 'password';
136
136
  default?: DefaultValue<string>;
137
- placeholder?: string;
138
137
  }
139
138
  interface NumberPrompt extends BasePrompt {
140
139
  type: 'number';
package/dist/index.d.ts CHANGED
@@ -134,7 +134,6 @@ interface BasePrompt {
134
134
  interface InputPrompt extends BasePrompt {
135
135
  type: 'input' | 'password';
136
136
  default?: DefaultValue<string>;
137
- placeholder?: string;
138
137
  }
139
138
  interface NumberPrompt extends BasePrompt {
140
139
  type: 'number';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy",
3
3
  "type": "module",
4
- "version": "0.19.2",
4
+ "version": "0.19.3",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -48,10 +48,10 @@
48
48
  "tsdown": "^0.15.8",
49
49
  "typescript": "^5.9.3",
50
50
  "@internal/eslint-config": "0.3.0",
51
+ "@internal/tsdown-config": "0.1.0",
51
52
  "@internal/tsconfig": "0.1.0",
52
- "@internal/prettier-config": "0.0.1",
53
53
  "@internal/vitest-config": "0.1.0",
54
- "@internal/tsdown-config": "0.1.0"
54
+ "@internal/prettier-config": "0.0.1"
55
55
  },
56
56
  "prettier": "@internal/prettier-config",
57
57
  "scripts": {
@@ -278,10 +278,6 @@
278
278
  }
279
279
  ]
280
280
  },
281
- "placeholder": {
282
- "type": "string",
283
- "description": "Placeholder text (for input prompts)"
284
- },
285
281
  "min": {
286
282
  "type": "number",
287
283
  "description": "Minimum value (for number prompts)"