wp-lemon-create 1.2.3 → 1.2.4
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 +8 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -127,7 +127,14 @@ program
|
|
|
127
127
|
* Add composer packages
|
|
128
128
|
*/
|
|
129
129
|
shell.echo('Installing plugins, master theme and packages. This may take a while\n');
|
|
130
|
-
|
|
130
|
+
|
|
131
|
+
shell.exec('require composer/installers ~1.0', { silent: true });
|
|
132
|
+
|
|
133
|
+
// Add libraries and parent theme
|
|
134
|
+
shell.exec('composer require highground/bulldozer timber/timber satispress/wp-lemon --with-all-dependencies', { silent: true });
|
|
135
|
+
|
|
136
|
+
shell.exec('composer require satispress/advanced-custom-fields-pro satispress/fluentformpro satispress/lemon-blocks satispress/quartermaster satispress/wp-migrate-db-pro satispress/wp-migrate-db-pro-media-files wpackagist-plugin/limit-login-attempts-reloaded log1x/acf-editor-palette wpackagist-plugin/cookie-law-info wpackagist-plugin/fluentform wpackagist-plugin/seo-by-rank-math wpackagist-plugin/simple-custom-post-order wpackagist-plugin/worker wpackagist-plugin/wp-mail-smtp --with-all-dependencies', { silent: true });
|
|
137
|
+
|
|
131
138
|
shell.exec('composer remove squizlabs/php_codesnifferes roave/security-advisories', { silent: true });
|
|
132
139
|
|
|
133
140
|
if (is_spinup == 'yes') {
|