Skip to content

Commit

Permalink
Merge pull request #8 from factorial-io/fix/update-schema
Browse files Browse the repository at this point in the history
fix(schema): update schema to align with latest configuration types
  • Loading branch information
dnnsjrng authored Sep 19, 2022
2 parents e4d3c77 + 80f8272 commit 6d38014
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions schema/drupal-breakpoints-css.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
},
"options": {
"$ref": "#/definitions/options"
},
"prettier": {
"$ref": "#/definitions/prettier"
}
},
"required": ["drupal"]
Expand All @@ -29,14 +32,14 @@
"type": "object",
"additionalProperties": false,
"properties": {
"path": {
"breakpointsPath": {
"type": "string"
},
"themeName": {
"type": "string"
}
},
"required": ["path", "themeName"]
"required": ["breakpointsPath", "themeName"]
},
"js": {
"title": "JavaScript configuration",
Expand Down Expand Up @@ -91,6 +94,17 @@
"type": "boolean"
}
}
},
"prettier": {
"title": "Prettier options",
"description": "https://github.com/factorial-io/drupal-breakpoints-css",
"type": "object",
"additionalProperties": false,
"properties": {
"configPath": {
"type": "string"
}
}
}
}
}

0 comments on commit 6d38014

Please sign in to comment.