Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cfware/babel-plugin-bundled-import-meta
Babel plugin to rewrite import.meta for bundled usage
https://github.com/cfware/babel-plugin-bundled-import-meta
babel-plugin esm esmodules import-meta rollup webpack
Last synced: 29 days ago
JSON representation
Babel plugin to rewrite import.meta for bundled usage
- Host: GitHub
- URL: https://github.com/cfware/babel-plugin-bundled-import-meta
- Owner: cfware
- License: bsd-3-clause
- Created: 2018-10-30T15:44:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-05T08:57:14.000Z (over 2 years ago)
- Last Synced: 2024-11-11T18:51:18.922Z (about 1 month ago)
- Topics: babel-plugin, esm, esmodules, import-meta, rollup, webpack
- Language: JavaScript
- Size: 39.1 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# babel-plugin-bundled-import-meta
[![Travis CI][travis-image]][travis-url]
[![Greenkeeper badge][gk-image]](https://greenkeeper.io/)
[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![BSD-3-Clause][license-image]](LICENSE)Babel plugin to rewrite import.meta.url for use in bundles.
## Install babel-plugin-bundled-import-meta
This module requires node.js 10 or above and `@babel/core`.
```sh
npm i babel-plugin-bundled-import-meta
```## Usage
Add `babel-plugin-bundled-import-meta` to `plugins` in your babel settings.
## Settings
```json
{
"plugins": [
["babel-plugin-bundled-import-meta", {
"mappings": {
"node_modules": "/assets"
},
"bundleDir": "html"
}]
]
}
```This example will assume that `html/` will directly contain the bundled JavaScript.
`node_modules/` served from `/assets`. Any use of `import.meta` outside these
two folders will throw an exception.### bundleDir
If no mappings match it is assumed that `bundleDir` is served from the same directory
as the output bundle. In the example where bundleDir is set to `html` it is assumed
that assets in `html/components` will be published in `./components` relative to the
bundled JavaScript.Default `process.cwd()`.
### mappings
This maps source paths to server URL's. Key's represent local source paths, values
represent base URL which would be used for the unbundled build. Value URL's can be
relative or absolute. Relative URL's will be resolved at runtime using the bundle
URL as the base URL.Default `{}`.
### importStyle
It's necessary to know the full URL of the bundle as loaded by the browser. The best
way to determine this is different based on what type of bundle will be used.Supported styles are: `amd`, `cjs`, `esm`, `iife`, `umd`, `system`. Default `esm`.
The `esm` import style generates `import.meta.url` to detect the bundled URL. This
is not compatible with webpack so use another method. If anyone knows of a 'best'
option for use with webpack please open an issue or PR.When bundling with rollup you should generally use `esm` here. The only exception is
if rollup is generating an `esm` bundle for targets that do not support
`import.meta.url`. If you are using `import.meta.url` in your code but must maintain
compatibility with browsers that do not support this it is probably best to have rollup
generate a different bundle format.## Attribution
This module is based on code found in [polymer-build].
## `babel-plugin-bundled-import-meta` for enterprise
Available as part of the Tidelift Subscription.
The maintainers of `babel-plugin-bundled-import-meta` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-babel-plugin-bundled-import-meta?utm_source=npm-babel-plugin-bundled-import-meta&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
[npm-image]: https://img.shields.io/npm/v/babel-plugin-bundled-import-meta.svg
[npm-url]: https://npmjs.org/package/babel-plugin-bundled-import-meta
[travis-image]: https://travis-ci.org/cfware/babel-plugin-bundled-import-meta.svg?branch=master
[travis-url]: https://travis-ci.org/cfware/babel-plugin-bundled-import-meta
[gk-image]: https://badges.greenkeeper.io/cfware/babel-plugin-bundled-import-meta.svg
[downloads-image]: https://img.shields.io/npm/dm/babel-plugin-bundled-import-meta.svg
[downloads-url]: https://npmjs.org/package/babel-plugin-bundled-import-meta
[license-image]: https://img.shields.io/npm/l/babel-plugin-bundled-import-meta.svg
[polymer-build]: https://github.com/Polymer/tools/blob/fdc9e5472674c63435e8188fdc00b342184ce8f3/packages/build/src/babel-plugin-import-meta.ts
[rollup-demo]: https://github.com/cfware/babel-plugin-bundled-import-meta/tree/master/rollup-demo