@wp-playground/blueprints 1.0.19 → 1.0.21
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/blueprint-schema-validator.js +14 -1
- package/blueprint-schema.json +1 -0
- package/index.cjs +32 -32
- package/index.cjs.map +1 -1
- package/index.js +1794 -1783
- package/index.js.map +1 -1
- package/package.json +12 -12
|
@@ -154,6 +154,7 @@ const schema11 = {
|
|
|
154
154
|
SupportedPHPVersion: {
|
|
155
155
|
type: 'string',
|
|
156
156
|
enum: [
|
|
157
|
+
'8.4',
|
|
157
158
|
'8.3',
|
|
158
159
|
'8.2',
|
|
159
160
|
'8.1',
|
|
@@ -1475,7 +1476,18 @@ const schema12 = {
|
|
|
1475
1476
|
};
|
|
1476
1477
|
const schema13 = {
|
|
1477
1478
|
type: 'string',
|
|
1478
|
-
enum: [
|
|
1479
|
+
enum: [
|
|
1480
|
+
'8.4',
|
|
1481
|
+
'8.3',
|
|
1482
|
+
'8.2',
|
|
1483
|
+
'8.1',
|
|
1484
|
+
'8.0',
|
|
1485
|
+
'7.4',
|
|
1486
|
+
'7.3',
|
|
1487
|
+
'7.2',
|
|
1488
|
+
'7.1',
|
|
1489
|
+
'7.0',
|
|
1490
|
+
],
|
|
1479
1491
|
};
|
|
1480
1492
|
const schema14 = { type: 'string', const: 'wp-cli' };
|
|
1481
1493
|
const schema15 = {
|
|
@@ -19319,6 +19331,7 @@ function validate11(
|
|
|
19319
19331
|
}
|
|
19320
19332
|
if (
|
|
19321
19333
|
!(
|
|
19334
|
+
data9 === '8.4' ||
|
|
19322
19335
|
data9 === '8.3' ||
|
|
19323
19336
|
data9 === '8.2' ||
|
|
19324
19337
|
data9 === '8.1' ||
|