Skip to content

Commit 6d38014

Browse files
authored
Merge pull request #8 from factorial-io/fix/update-schema
fix(schema): update schema to align with latest configuration types
2 parents e4d3c77 + 80f8272 commit 6d38014

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

schema/drupal-breakpoints-css.json

+16-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
},
2020
"options": {
2121
"$ref": "#/definitions/options"
22+
},
23+
"prettier": {
24+
"$ref": "#/definitions/prettier"
2225
}
2326
},
2427
"required": ["drupal"]
@@ -29,14 +32,14 @@
2932
"type": "object",
3033
"additionalProperties": false,
3134
"properties": {
32-
"path": {
35+
"breakpointsPath": {
3336
"type": "string"
3437
},
3538
"themeName": {
3639
"type": "string"
3740
}
3841
},
39-
"required": ["path", "themeName"]
42+
"required": ["breakpointsPath", "themeName"]
4043
},
4144
"js": {
4245
"title": "JavaScript configuration",
@@ -91,6 +94,17 @@
9194
"type": "boolean"
9295
}
9396
}
97+
},
98+
"prettier": {
99+
"title": "Prettier options",
100+
"description": "https://github.com/factorial-io/drupal-breakpoints-css",
101+
"type": "object",
102+
"additionalProperties": false,
103+
"properties": {
104+
"configPath": {
105+
"type": "string"
106+
}
107+
}
94108
}
95109
}
96110
}

0 commit comments

Comments
 (0)