wp-lemon-create 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -0
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -171,6 +171,9 @@ program
171
171
  { silent: true },
172
172
  );
173
173
 
174
+ shell.exec('composer require roots/wordpress:^6.2', { silent: true });
175
+ shell.exec('composer remove wpackagist-theme/twentytwentythree', { silent: true });
176
+
174
177
  shell.exec('composer remove squizlabs/php_codesnifferes roave/security-advisories', { silent: true });
175
178
 
176
179
  if (is_spinup == 'yes') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wp-lemon-create",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Bootstrap your wp-lemon project",
5
5
  "main": "index.js",
6
6
  "author": "Erik van der bas",
@@ -9,7 +9,7 @@
9
9
  "wp-lemon-create": "./index.js"
10
10
  },
11
11
  "dependencies": {
12
- "commander": "^9.4.1",
12
+ "commander": "^10.0",
13
13
  "prompt-sync": "^4.2.0",
14
14
  "shelljs": "^0.8.5"
15
15
  }