From bd1c1e6b2573ed8ba2cd5a6c86e3067b3265eda0 Mon Sep 17 00:00:00 2001 From: rafapaezbas <15270736+rafapaezbas@users.noreply.github.com> Date: Tue, 27 Feb 2024 12:21:33 +0100 Subject: [PATCH] removed deprecated builtinsMap configuration (#77) Co-authored-by: rafapaezbas --- reference/configuration.md | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/reference/configuration.md b/reference/configuration.md index 648c8cd..02a6d6d 100644 --- a/reference/configuration.md +++ b/reference/configuration.md @@ -24,29 +24,6 @@ Pear versioning is automatic. The `package.json` file does **not** require a ver The name of the application. Overrides `package.json` `name`. -### `pear.builtinsMap ` Terminal Applications Only - -Terminal Applications run on the [`bare`](https://github.com/holepunchto/bare) JavaScript runtime, -which has a very small core so code with expects say, an `fs` module will throw MODULE_NOT_FOUND -unless that namespace is mapped to an installed module. - -Provide an object that maps builtin dependency namespaces to installed modules. - -An example `package.json`: - -```json -{ - "name": "example", - "pear": { - "builtinsMap": { - "fs": "bare-fs" - } - } -} -``` - -> In future this option may also apply to Desktop Applications. - ### `pear.gui ` Graphical User Interface configuration options.