appiq-solution 1.6.2 → 1.6.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/package.json
CHANGED
@@ -147,11 +147,9 @@ async function promptInstallation() {
|
|
147
147
|
{
|
148
148
|
type: 'input',
|
149
149
|
name: 'directory',
|
150
|
-
message: 'Enter the full path to your project directory where Appiq-Solution should be installed (leave empty to install in the current folder):'
|
150
|
+
message: 'Enter the full path to your project directory where Appiq-Solution should be installed (leave empty to install in the current folder):',
|
151
151
|
validate: (input) => {
|
152
|
-
|
153
|
-
return 'Please enter a valid project path';
|
154
|
-
}
|
152
|
+
// Allow empty input for current folder
|
155
153
|
return true;
|
156
154
|
}
|
157
155
|
}
|