wp-lemon-create 1.2.5 → 1.2.6
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/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -83,7 +83,7 @@ program
|
|
|
83
83
|
project_repository = prompt('Git repository link:');
|
|
84
84
|
username = prompt('WordPress username:');
|
|
85
85
|
email = prompt('WordPress email:');
|
|
86
|
-
password = prompt('WordPress password:');
|
|
86
|
+
password = prompt('WordPress password:',{echo: '*'});
|
|
87
87
|
plugins_searchwp = prompt('Add plugin: SearchWP? yes/no (defaults to no)', 'no');
|
|
88
88
|
plugins_wpml = prompt('Add plugin: WPML? yes/no (defaults to no)', 'no');
|
|
89
89
|
is_spinup = prompt('Does the project run on Spinup-wp? (defaults to no)', 'no');
|