Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

#### :nail_care: Polish

- Add (dev-)dependencies to build schema. https://github.com/rescript-lang/rescript/pull/7892

#### :house: Internal

# 12.0.0-beta.11
Expand Down
12 changes: 10 additions & 2 deletions docs/docson/build-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,19 @@
},
"bs-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules`"
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules` (deprecated, use dependencies instead)."
},
"bs-dev-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dev dependencies of the library, like in package.json. Currently searches in `node_modules`"
"description": "ReScript dev dependencies of the library, like in package.json. Currently searches in `node_modules` (deprecated, use dev-dependencies instead)."
},
"dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules`."
},
"dev-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dev dependencies of the library, like in package.json. Currently searches in `node_modules`."
},
"generators": {
"type": "array",
Expand Down
Loading