@ixon-cdk/core 1.10.1 → 1.11.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/package.json +1 -1
- package/prompts.js +3 -3
package/package.json
CHANGED
package/prompts.js
CHANGED
|
@@ -19,13 +19,13 @@ module.exports = {
|
|
|
19
19
|
return {
|
|
20
20
|
type: 'text',
|
|
21
21
|
name,
|
|
22
|
-
message: 'What is the ID of the
|
|
22
|
+
message: 'What is the ID of the UI Component?',
|
|
23
23
|
validate: value => {
|
|
24
24
|
if (!value) {
|
|
25
|
-
return '
|
|
25
|
+
return 'UI Component ID is required.';
|
|
26
26
|
}
|
|
27
27
|
if (!/^[a-zA-Z0-9]{12}$/.test(value)) {
|
|
28
|
-
return 'Invalid
|
|
28
|
+
return 'Invalid UI Component ID.';
|
|
29
29
|
}
|
|
30
30
|
return true;
|
|
31
31
|
},
|