diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bab572a54..a614739e43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/docson/build-schema.json b/docs/docson/build-schema.json index b28106b18c..ee1959bf50 100644 --- a/docs/docson/build-schema.json +++ b/docs/docson/build-schema.json @@ -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",