Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/favware/esbuild-plugin-file-path-extensions
An esbuild plugin to automatically insert file extensions in your built JavaScript files based on the specified target
https://github.com/favware/esbuild-plugin-file-path-extensions
Last synced: 3 months ago
JSON representation
An esbuild plugin to automatically insert file extensions in your built JavaScript files based on the specified target
- Host: GitHub
- URL: https://github.com/favware/esbuild-plugin-file-path-extensions
- Owner: favware
- License: mit
- Created: 2022-10-16T16:32:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T08:42:38.000Z (7 months ago)
- Last Synced: 2024-04-18T21:39:56.286Z (7 months ago)
- Language: TypeScript
- Size: 6.23 MB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# esbuild-plugin-file-path-extensions
**An esbuild plugin to automatically insert file extensions in your built
JavaScript files based on the specified target**[![GitHub](https://img.shields.io/github/license/favware/esbuild-plugin-file-path-extensions)](https://github.com/favware/esbuild-plugin-file-path-extensions/blob/main/LICENSE.md)
[![npm](https://img.shields.io/npm/v/esbuild-plugin-file-path-extensions?color=crimson&logo=npm&style=flat-square)](https://www.npmjs.com/package/esbuild-plugin-file-path-extensions)**Table of Contents**
- [esbuild-plugin-file-path-extensions](#esbuild-plugin-file-path-extensions)
- [Description](#description)
- [Installation](#installation)
- [Usage](#usage)
- [With [`esbuild`][esbuild]](#with-esbuildesbuild)
- [With [`tsup`][tsup]](#with-tsuptsup)
- [Options](#options)
- [Buy us some doughnuts](#buy-us-some-doughnuts)
- [Contributors](#contributors)## Description
In order to properly and fully support packaging your code for both CJS and ESM
when using esbuild you will want to ensure that all your imports and exports are
using their respective file extensions (i.e. `.js` for CJS and `.mjs` for ESM)
to ensure that NodeJS can always load the appropriate files when they are within
the same folder. However, managing this manually is an absolute nightmare and
annoyance to do in the source code. This plugin alleviates that issue by
automatically appending the file path extensions when building the code.## Installation
You can use the following command to install this package, or replace
`npm install -D` with your package manager of choice.```sh
npm install -D esbuild-plugin-file-path-extensions
```## Usage
> **Warning** When using this plugin you **_HAVE_** to set the `bundle` option
> to true for file paths to be resolved correctly. Do note however then when
> doing this your code will NOT bundle all into 1 file. An example of where this
> plugin is used and what the output will be after it is used can be found at
> [sapphiredev/framework][framework]> **Note** If you import a file and append a file one of the file extensions
> `js`, `cjs`, `mjs`, `ts`, `cts`, or `mts` then this plugin will skip that
> import and use the originally provided extension. This is to ensure that no
> double file extensions are added.### With [`esbuild`][esbuild]
Add the plugin to your esbuild options, i.e.:
```js
const esbuild = require('esbuild');
const { resolve } = require('path');
const {
esbuildPluginFilePathExtensions
} = require('esbuild-plugin-file-path-extensions');await esbuild.build({
format: 'cjs',
entryPoints: [resolve(__dirname, './src/index.ts')],
outdir: resolve(__dirname, './dist'),
bundle: true,
plugins: [esbuildPluginFilePathExtensions()]
});
```### With [`tsup`][tsup]
Add the plugin to your `tsup.config.ts`, i.e.:
```js
import { defineConfig } from 'tsup';
import { resolve } from 'path';
import { esbuildPluginFilePathExtensions } from 'esbuild-plugin-file-path-extensions';await defineConfig({
format: ['cjs', 'esm'],
entry: ['src/**/*.ts'],
outDir: './dist',
bundle: true,
esbuildPlugins: [esbuildPluginFilePathExtensions()]
});
```[esbuild]: https://esbuild.github.io/
[tsup]: https://tsup.egoist.dev## Options
The plugin accepts the following options:
- `esm`: Boolean, whether the current build is for ESM or not. Defaults to
`build.initialOptions?.define?.TSUP_FORMAT === '"esm"'` in order to account
for the cross-target capabilities of `tsup`.- `cjsExtension`: The extension to apply for CJS code. Defaults to `js`. Make
sure to **NOT** start with a leading `.`.- `esmExtension`: The extension to apply for ESM code. Defaults to `mjs`. Make
sure to **NOT** start with a leading `.`.- `filter`: This is an advanced use-case option with which you can filter which
files esbuild should apply this plugin on- `namespace`: This is an advanced use-case option through which the
[esbuild namespace](https://esbuild.github.io/plugins/#namespaces) can be
configured## Buy us some doughnuts
Favware projects are and always will be open source, even if we don't get
donations. That being said, we know there are amazing people who may still want
to donate just to show their appreciation. Thank you very much in advance!We accept donations through Ko-fi, Paypal, Patreon, GitHub Sponsorships, and
various cryptocurrencies. You can use the buttons below to donate through your
method of choice.| Donate With | Address |
| :-------------: | :-----------------------------------------------: |
| Ko-fi | [Click Here](https://donate.favware.tech/kofi) |
| Patreon | [Click Here](https://donate.favware.tech/patreon) |
| PayPal | [Click Here](https://donate.favware.tech/paypal) |
| GitHub Sponsors | [Click Here](https://github.com/sponsors/Favna) |
| Bitcoin | `1E643TNif2MTh75rugepmXuq35Tck4TnE5` |
| Ethereum | `0xF653F666903cd8739030D2721bF01095896F5D6E` |
| LiteCoin | `LZHvBkaJqKJRa8N7Dyu41Jd1PDBAofCik6` |## Contributors
Please make sure to read the [Contributing Guide][contributing] before making a
pull request.Thank you to all the people who already contributed!
[contributing]: .github/CONTRIBUTING.md
[framework]: https://github.com/sapphiredev/framework