From e7d4c3f49218eedd35134653e363759da0f50b12 Mon Sep 17 00:00:00 2001 From: rafapaezbas Date: Tue, 27 Feb 2024 12:13:18 +0100 Subject: [PATCH] removed deprecated builtinsMap configuration --- 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.