wp-lemon-create 2.0.0 → 2.0.1
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 +4 -3
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -397,9 +397,10 @@ function setupWordPress() {
|
|
|
397
397
|
shell.echo('✔️ Installed Dutch language.');
|
|
398
398
|
|
|
399
399
|
// activate plugins
|
|
400
|
-
shell.exec(`wp plugin activate
|
|
401
|
-
shell.exec(`wp plugin activate
|
|
402
|
-
|
|
400
|
+
shell.exec(`wp plugin activate fluentform`, { silent: true });
|
|
401
|
+
shell.exec(`wp plugin activate fluentform`, { silent: true });
|
|
402
|
+
shell.exec(`wp plugin activate advanced-custom-fields-pro`, { silent: true });
|
|
403
|
+
shell.exec(`wp plugin activate quartermaster`, { silent: true });
|
|
403
404
|
// set menu
|
|
404
405
|
shell.exec(`wp menu create "Hoofdmenu"`, { silent: true });
|
|
405
406
|
shell.exec(`wp menu item add-post Hoofdmenu 2`, { silent: true });
|