Phase 1 PWA: prayer times, qibla, quran, hijri, tasbih, 99 names
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+404
@@ -0,0 +1,404 @@
|
||||
[npm]: https://img.shields.io/npm/v/@rollup/plugin-babel
|
||||
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-babel
|
||||
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-babel
|
||||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-babel
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![size][size]][size-url]
|
||||
[](https://liberamanifesto.com)
|
||||
|
||||
# @rollup/plugin-babel
|
||||
|
||||
🍣 A Rollup plugin for seamless integration between Rollup and Babel.
|
||||
|
||||
## Why?
|
||||
|
||||
If you're using Babel to transpile your ES6/7 code and Rollup to generate a standalone bundle, you have a couple of options:
|
||||
|
||||
- run the code through Babel first, being careful to exclude the module transformer, or
|
||||
- run the code through Rollup first, and _then_ pass it to Babel.
|
||||
|
||||
Both approaches have disadvantages – in the first case, on top of the additional configuration complexity, you may end up with Babel's helpers (like `classCallCheck`) repeated throughout your code (once for each module where the helpers are used). In the second case, transpiling is likely to be slower, because transpiling a large bundle is much more work for Babel than transpiling a set of small files.
|
||||
|
||||
Either way, you have to worry about a place to put the intermediate files, and getting sourcemaps to behave becomes a royal pain.
|
||||
|
||||
Using Rollup with `@rollup/plugin-babel` makes the process far easier.
|
||||
|
||||
## Requirements
|
||||
|
||||
This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v1.20.0+.
|
||||
|
||||
## Install
|
||||
|
||||
```bash
|
||||
npm install @rollup/plugin-babel --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Create a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:
|
||||
|
||||
```js
|
||||
import { babel } from '@rollup/plugin-babel';
|
||||
|
||||
const config = {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
dir: 'output',
|
||||
format: 'es'
|
||||
},
|
||||
plugins: [babel({ babelHelpers: 'bundled' })]
|
||||
};
|
||||
|
||||
export default config;
|
||||
```
|
||||
|
||||
Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).
|
||||
|
||||
### Using With `@rollup/plugin-commonjs`
|
||||
|
||||
When using `@rollup/plugin-babel` with `@rollup/plugin-commonjs` in the same Rollup configuration, it's important to note that `@rollup/plugin-commonjs` _must_ be placed before this plugin in the `plugins` array for the two to work together properly. e.g.
|
||||
|
||||
```js
|
||||
import { babel } from '@rollup/plugin-babel';
|
||||
import commonjs from '@rollup/plugin-commonjs';
|
||||
|
||||
const config = {
|
||||
...
|
||||
plugins: [
|
||||
commonjs(),
|
||||
babel({ babelHelpers: 'bundled' })
|
||||
],
|
||||
};
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
This plugin respects Babel [configuration files](https://babeljs.io/docs/en/configuration) by default and they are generally the best place to put your configuration.
|
||||
|
||||
You can also run Babel on the generated chunks instead of the input files. Even though this is slower, it is the only way to transpile Rollup's auto-generated wrapper code to lower compatibility targets than ES5, see [Running Babel on the generated code](#running-babel-on-the-generated-code) for details.
|
||||
|
||||
All options are as per the [Babel documentation](https://babeljs.io/docs/en/options), plus the following:
|
||||
|
||||
### `exclude`
|
||||
|
||||
Type: `String | RegExp | Array[...String|RegExp]`<br>
|
||||
|
||||
A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. When relying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself.
|
||||
|
||||
### `include`
|
||||
|
||||
Type: `String | RegExp | Array[...String|RegExp]`<br>
|
||||
|
||||
A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there.
|
||||
|
||||
### `filter`
|
||||
|
||||
Type: (id: string) => boolean<br>
|
||||
|
||||
Custom [filter function](https://github.com/rollup/plugins/tree/master/packages/pluginutils#createfilter) can be used to determine whether or not certain modules should be operated upon.
|
||||
|
||||
Usage:
|
||||
|
||||
```js
|
||||
import { createFilter } from '@rollup/pluginutils';
|
||||
const include = 'include/**.js';
|
||||
const exclude = 'exclude/**.js';
|
||||
const filter = createFilter(include, exclude, {});
|
||||
```
|
||||
|
||||
### `extensions`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `['.js', '.jsx', '.es6', '.es', '.mjs']`
|
||||
|
||||
An array of file extensions that Babel should transpile. If you want to transpile TypeScript files with this plugin it's essential to include `.ts` and `.tsx` in this option.
|
||||
|
||||
### `babelHelpers`
|
||||
|
||||
Type: `'bundled' | 'runtime' | 'inline' | 'external'`<br>
|
||||
Default: `'bundled'`
|
||||
|
||||
It is recommended to configure this option explicitly (even if with its default value) so an informed decision is taken on how those babel helpers are inserted into the code.
|
||||
|
||||
We recommend to follow these guidelines to determine the most appropriate value for your project:
|
||||
|
||||
- `'runtime'` - you should use this especially when building libraries with Rollup. It has to be used in combination with `@babel/plugin-transform-runtime` and you should also specify `@babel/runtime` as dependency of your package. Don't forget to tell Rollup to treat the helpers imported from within the `@babel/runtime` module as external dependencies when bundling for `cjs` & `es` formats. This can be accomplished via regex (`external: [/@babel\/runtime/]`) or a function (`external: id => id.includes('@babel/runtime')`). It's important to not only specify `external: ['@babel/runtime']` since the helpers are imported from nested paths (e.g `@babel/runtime/helpers/get`) and [Rollup will only exclude modules that match strings exactly](https://rollupjs.org/guide/en/#peer-dependencies).
|
||||
- `'bundled'` - you should use this if you want your resulting bundle to contain those helpers (at most one copy of each). Useful especially if you bundle an application code.
|
||||
- `'external'` - use this only if you know what you are doing. It will reference helpers on **global** `babelHelpers` object. Used in combination with `@babel/plugin-external-helpers`.
|
||||
- `'inline'` - this is not recommended. Helpers will be inserted in each file using this option. This can cause serious code duplication. This is the default Babel behavior as Babel operates on isolated files - however, as Rollup is a bundler and is project-aware (and therefore likely operating across multiple input files), the default of this plugin is `"bundled"`.
|
||||
|
||||
### `skipPreflightCheck`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
Before transpiling your input files this plugin also transpile a short piece of code **for each** input file. This is used to validate some misconfiguration errors, but for sufficiently big projects it can slow your build times so if you are confident about your configuration then you might disable those checks with this option.
|
||||
|
||||
### External dependencies
|
||||
|
||||
Ideally, you should only be transforming your source code, rather than running all of your external dependencies through Babel (to ignore external dependencies from being handled by this plugin you might use `exclude: 'node_modules/**'` option). If you have a dependency that exposes untranspiled ES6 source code that doesn't run in your target environment, then you may need to break this rule, but it often causes problems with unusual `.babelrc` files or mismatched versions of Babel.
|
||||
|
||||
We encourage library authors not to distribute code that uses untranspiled ES6 features (other than modules) for this reason. Consumers of your library should _not_ have to transpile your ES6 code, any more than they should have to transpile your CoffeeScript, ClojureScript or TypeScript.
|
||||
|
||||
Use `babelrc: false` to prevent Babel from using local (i.e. to your external dependencies) `.babelrc` files, relying instead on the configuration you pass in.
|
||||
|
||||
### Helpers
|
||||
|
||||
In some cases Babel uses _helpers_ to avoid repeating chunks of code – for example, if you use the `class` keyword, it will use a `classCallCheck` function to ensure that the class is instantiated correctly.
|
||||
|
||||
By default, those helpers will be inserted at the top of the file being transformed, which can lead to duplication. This rollup plugin automatically deduplicates those helpers, keeping only one copy of each one used in the output bundle. Rollup will combine the helpers in a single block at the top of your bundle.
|
||||
|
||||
You can customize how those helpers are being inserted into the transformed file with [`babelHelpers`](#babelhelpers) option.
|
||||
|
||||
### Modules
|
||||
|
||||
This is not needed since Babel 7 - it knows automatically that Rollup understands ES modules & that it shouldn't use any module transform with it. Unless you forcefully include a module transform in your Babel configuration.
|
||||
|
||||
If you have been pointed to this section by an error thrown by this plugin, please check your Babel configuration files and disable any module transforms when running Rollup builds.
|
||||
|
||||
## Running Babel on the generated code
|
||||
|
||||
You can run `@rollup/plugin-babel` on the output files instead of the input files by using `getBabelOutputPlugin(...)`. This can be used to perform code transformations on the resulting chunks and is the only way to transform Rollup's auto-generated code. By default, the plugin will be applied to all outputs:
|
||||
|
||||
```js
|
||||
// rollup.config.js
|
||||
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
|
||||
|
||||
export default {
|
||||
input: 'main.js',
|
||||
plugins: [
|
||||
getBabelOutputPlugin({
|
||||
presets: ['@babel/preset-env']
|
||||
})
|
||||
],
|
||||
output: [
|
||||
{ file: 'bundle.cjs.js', format: 'cjs' },
|
||||
{ file: 'bundle.es.js', format: 'es' }
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
If you only want to apply it to specific outputs, you can use it as an output plugin (requires at least Rollup v1.27.0):
|
||||
|
||||
```js
|
||||
// rollup.config.js
|
||||
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
|
||||
|
||||
export default {
|
||||
input: 'main.js',
|
||||
output: [
|
||||
{ file: 'bundle.js', format: 'es' },
|
||||
{
|
||||
file: 'bundle.es5.js',
|
||||
format: 'es',
|
||||
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
|
||||
}
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
The `include`, `exclude` and `extensions` options are ignored when using `getBabelOutputPlugin` and `createBabelOutputPluginFactory` will produce warnings, and there are a few more points to note that users should be aware of.
|
||||
|
||||
When transforming generated code, you can instead control which chunks are processed by matching their manual chunk names via the `includeChunks`/`excludeChunks` options. These patterns are matched against `chunk.name` as provided to Rollup's `renderChunk` hook and are especially useful to skip already-transpiled/minified vendor chunks:
|
||||
|
||||
```js
|
||||
// rollup.config.js
|
||||
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
|
||||
|
||||
export default {
|
||||
input: 'main.js',
|
||||
manualChunks(id) {
|
||||
if (id.includes('big-library')) return 'vendor';
|
||||
},
|
||||
output: {
|
||||
format: 'es',
|
||||
plugins: [
|
||||
getBabelOutputPlugin({
|
||||
presets: ['@babel/preset-env'],
|
||||
// Do not transform the 'vendor' manual chunk
|
||||
excludeChunks: ['vendor']
|
||||
})
|
||||
]
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
You can also run the plugin twice on the code, once when processing the input files to transpile special syntax to JavaScript and once on the output to transpile to a lower compatibility target:
|
||||
|
||||
```js
|
||||
// rollup.config.js
|
||||
import babel, { getBabelOutputPlugin } from '@rollup/plugin-babel';
|
||||
|
||||
export default {
|
||||
input: 'main.js',
|
||||
plugins: [babel({ presets: ['@babel/preset-react'] })],
|
||||
output: [
|
||||
{
|
||||
file: 'bundle.js',
|
||||
format: 'es',
|
||||
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
|
||||
}
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
### Babel configuration files
|
||||
|
||||
Unlike the regular `babel` plugin, `getBabelOutputPlugin(...)` will **not** automatically search for [Babel configuration files](https://babeljs.io/docs/en/config-files). Besides passing in Babel options directly, however, you can specify a configuration file manually via Babel's [`configFile`](https://babeljs.io/docs/en/options#configfile) option:
|
||||
|
||||
```js
|
||||
getBabelOutputPlugin({
|
||||
configFile: path.resolve(__dirname, 'babel.config.js')
|
||||
});
|
||||
```
|
||||
|
||||
### Using formats other than ES modules or CommonJS
|
||||
|
||||
As `getBabelOutputPlugin(...)` will run _after_ Rollup has done all its transformations, it needs to make sure it preserves the semantics of Rollup's output format. This is especially important for Babel plugins that add, modify or remove imports or exports, but also for other transformations that add new variables as they can accidentally become global variables depending on the format. Therefore it is recommended that for formats other than `es` or `cjs`, you set Rollup to use the `es` output format and let Babel handle the transformation to another format, e.g. via
|
||||
|
||||
```
|
||||
presets: [['@babel/preset-env', { modules: 'umd' }], ...]
|
||||
```
|
||||
|
||||
to create a UMD/IIFE compatible output. If you want to use `getBabelOutputPlugin(...)` with other formats, you need to specify `allowAllFormats: true` as plugin option:
|
||||
|
||||
```js
|
||||
rollup.rollup({...})
|
||||
.then(bundle => bundle.generate({
|
||||
format: 'iife',
|
||||
plugins: [getBabelOutputPlugin({
|
||||
allowAllFormats: true,
|
||||
// ...
|
||||
})]
|
||||
}))
|
||||
```
|
||||
|
||||
### Injected helpers
|
||||
|
||||
By default, helpers e.g. when transpiling classes will be inserted at the top of each chunk. In contrast to when applying this plugin on the input files, helpers will not be deduplicated across chunks.
|
||||
|
||||
Alternatively, you can use imported runtime helpers by adding the `@babel/transform-runtime` plugin. This will make `@babel/runtime` an external dependency of your project, see [@babel/plugin-transform-runtime](https://babeljs.io/docs/en/babel-plugin-transform-runtime) for details.
|
||||
|
||||
Note that this will only work for `es` and `cjs` formats, and you need to make sure to set the `useESModules` option of `@babel/plugin-transform-runtime` to `true` if you create ES output:
|
||||
|
||||
```js
|
||||
rollup.rollup({...})
|
||||
.then(bundle => bundle.generate({
|
||||
format: 'es',
|
||||
plugins: [getBabelOutputPlugin({
|
||||
presets: ['@babel/preset-env'],
|
||||
plugins: [['@babel/plugin-transform-runtime', { useESModules: true }]]
|
||||
})]
|
||||
}))
|
||||
```
|
||||
|
||||
```js
|
||||
// input
|
||||
export default class Foo {}
|
||||
|
||||
// output
|
||||
import _classCallCheck from '@babel/runtime/helpers/esm/classCallCheck';
|
||||
|
||||
var Foo = function Foo() {
|
||||
_classCallCheck(this, Foo);
|
||||
};
|
||||
|
||||
export default Foo;
|
||||
```
|
||||
|
||||
And for CommonJS:
|
||||
|
||||
```js
|
||||
rollup.rollup({...})
|
||||
.then(bundle => bundle.generate({
|
||||
format: 'cjs',
|
||||
plugins: [getBabelOutputPlugin({
|
||||
presets: ['@babel/preset-env'],
|
||||
plugins: [['@babel/plugin-transform-runtime', { useESModules: false }]]
|
||||
})]
|
||||
}))
|
||||
```
|
||||
|
||||
```js
|
||||
// input
|
||||
export default class Foo {}
|
||||
|
||||
// output
|
||||
('use strict');
|
||||
|
||||
var _classCallCheck = require('@babel/runtime/helpers/classCallCheck');
|
||||
|
||||
var Foo = function Foo() {
|
||||
_classCallCheck(this, Foo);
|
||||
};
|
||||
|
||||
module.exports = Foo;
|
||||
```
|
||||
|
||||
Another option is to use `@babel/plugin-external-helpers`, which will reference the global `babelHelpers` object. It is your responsibility to make sure this global variable exists.
|
||||
|
||||
## Custom plugin builder
|
||||
|
||||
`@rollup/plugin-babel` exposes a plugin-builder utility that allows users to add custom handling of Babel's configuration for each file that it processes.
|
||||
|
||||
`createBabelInputPluginFactory` accepts a callback that will be called with the loader's instance of `babel` so that tooling can ensure that it using exactly the same `@babel/core` instance as the loader itself.
|
||||
|
||||
It's main purpose is to allow other tools for configuration of transpilation without forcing people to add extra configuration but still allow for using their own babelrc / babel config files.
|
||||
|
||||
### Example
|
||||
|
||||
```js
|
||||
import { createBabelInputPluginFactory } from '@rollup/plugin-babel';
|
||||
|
||||
export default createBabelInputPluginFactory((babelCore) => {
|
||||
function myPlugin() {
|
||||
return {
|
||||
visitor: {}
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
// Passed the plugin options.
|
||||
options({ opt1, opt2, ...pluginOptions }) {
|
||||
return {
|
||||
// Pull out any custom options that the plugin might have.
|
||||
customOptions: { opt1, opt2 },
|
||||
|
||||
// Pass the options back with the two custom options removed.
|
||||
pluginOptions
|
||||
};
|
||||
},
|
||||
|
||||
config(cfg /* Passed Babel's 'PartialConfig' object. */, { code, customOptions }) {
|
||||
if (cfg.hasFilesystemConfig()) {
|
||||
// Use the normal config
|
||||
return cfg.options;
|
||||
}
|
||||
|
||||
return {
|
||||
...cfg.options,
|
||||
plugins: [
|
||||
...(cfg.options.plugins || []),
|
||||
|
||||
// Include a custom plugin in the options.
|
||||
myPlugin
|
||||
]
|
||||
};
|
||||
},
|
||||
|
||||
result(result, { code, customOptions, config, transformOptions }) {
|
||||
return {
|
||||
...result,
|
||||
code: result.code + '\n// Generated by some custom plugin'
|
||||
};
|
||||
}
|
||||
};
|
||||
});
|
||||
```
|
||||
|
||||
## Meta
|
||||
|
||||
[CONTRIBUTING](/.github/CONTRIBUTING.md)
|
||||
|
||||
[LICENSE (MIT)](/LICENSE)
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var babel = require('@babel/core');
|
||||
var pluginutils = require('@rollup/pluginutils');
|
||||
var helperModuleImports = require('@babel/helper-module-imports');
|
||||
|
||||
function _interopNamespaceDefault(e) {
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n.default = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var babel__namespace = /*#__PURE__*/_interopNamespaceDefault(babel);
|
||||
|
||||
const BUNDLED = 'bundled';
|
||||
const INLINE = 'inline';
|
||||
const RUNTIME = 'runtime';
|
||||
const EXTERNAL = 'external';
|
||||
|
||||
// NOTE: DO NOT REMOVE the null character `\0` as it may be used by other plugins
|
||||
// e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74
|
||||
const HELPERS = '\0rollupPluginBabelHelpers.js';
|
||||
|
||||
function importHelperPlugin({
|
||||
types: t
|
||||
}) {
|
||||
return {
|
||||
pre(file) {
|
||||
const cachedHelpers = {};
|
||||
file.set('helperGenerator', name => {
|
||||
if (!file.availableHelper(name)) {
|
||||
return null;
|
||||
}
|
||||
if (cachedHelpers[name]) {
|
||||
return t.cloneNode(cachedHelpers[name]);
|
||||
}
|
||||
return cachedHelpers[name] = helperModuleImports.addNamed(file.path, name, HELPERS);
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
const addBabelPlugin = (options, plugin) => {
|
||||
return {
|
||||
...options,
|
||||
plugins: options.plugins.concat(plugin)
|
||||
};
|
||||
};
|
||||
const warned = {};
|
||||
function warnOnce(ctx, msg) {
|
||||
if (warned[msg]) return;
|
||||
warned[msg] = true;
|
||||
ctx.warn(msg);
|
||||
}
|
||||
const regExpCharactersRegExp = /[\\^$.*+?()[\]{}|]/g;
|
||||
const escapeRegExpCharacters = str => str.replace(regExpCharactersRegExp, '\\$&');
|
||||
function stripQuery(id) {
|
||||
// strip query params from import
|
||||
const [bareId, query] = id.split('?');
|
||||
const suffix = `${query ? `?${query}` : ''}`;
|
||||
return {
|
||||
bareId,
|
||||
query,
|
||||
suffix
|
||||
};
|
||||
}
|
||||
|
||||
const MODULE_ERROR = 'Rollup requires that your Babel configuration keeps ES6 module syntax intact. ' + 'Unfortunately it looks like your configuration specifies a module transformer ' + 'to replace ES6 modules with another module format. To continue you have to disable it.' + '\n\n' + "Most commonly it's a CommonJS transform added by @babel/preset-env - " + 'in such case you should disable it by adding `modules: false` option to that preset ' + '(described in more detail here - https://github.com/rollup/plugins/tree/master/packages/babel#modules ).';
|
||||
const UNEXPECTED_ERROR = 'An unexpected situation arose. Please raise an issue at ' + 'https://github.com/rollup/plugins/issues. Thanks!';
|
||||
const PREFLIGHT_TEST_STRING = '__ROLLUP__PREFLIGHT_CHECK_DO_NOT_TOUCH__';
|
||||
const PREFLIGHT_INPUT = `export default "${PREFLIGHT_TEST_STRING}";`;
|
||||
function helpersTestTransform() {
|
||||
return {
|
||||
visitor: {
|
||||
StringLiteral(path, state) {
|
||||
if (path.node.value === PREFLIGHT_TEST_STRING) {
|
||||
path.replaceWith(state.file.addHelper('inherits'));
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
const mismatchError = (actual, expected, filename) => `You have declared using "${expected}" babelHelpers, but transforming ${filename} resulted in "${actual}". Please check your configuration.`;
|
||||
|
||||
// Revert to /\/helpers\/(esm\/)?inherits/ when Babel 8 gets released, this was fixed in https://github.com/babel/babel/issues/14185
|
||||
const inheritsHelperRe = /[\\/]+helpers[\\/]+(esm[\\/]+)?inherits/;
|
||||
async function preflightCheck(ctx, babelHelpers, transformOptions) {
|
||||
const finalOptions = addBabelPlugin(transformOptions, helpersTestTransform);
|
||||
const check = (await babel__namespace.transformAsync(PREFLIGHT_INPUT, finalOptions)).code;
|
||||
|
||||
// Babel sometimes splits ExportDefaultDeclaration into 2 statements, so we also check for ExportNamedDeclaration
|
||||
if (!/export (d|{)/.test(check)) {
|
||||
ctx.error(MODULE_ERROR);
|
||||
}
|
||||
if (inheritsHelperRe.test(check)) {
|
||||
if (babelHelpers === RUNTIME) {
|
||||
return;
|
||||
}
|
||||
ctx.error(mismatchError(RUNTIME, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
if (check.includes('babelHelpers.inherits')) {
|
||||
if (babelHelpers === EXTERNAL) {
|
||||
return;
|
||||
}
|
||||
ctx.error(mismatchError(EXTERNAL, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
|
||||
// test unminifiable string content
|
||||
if (check.includes('Super expression must either be null or a function')) {
|
||||
if (babelHelpers === INLINE || babelHelpers === BUNDLED) {
|
||||
return;
|
||||
}
|
||||
if (babelHelpers === RUNTIME && !transformOptions.plugins.length) {
|
||||
ctx.error(`You must use the \`@babel/plugin-transform-runtime\` plugin when \`babelHelpers\` is "${RUNTIME}".\n`);
|
||||
}
|
||||
ctx.error(mismatchError(INLINE, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
ctx.error(UNEXPECTED_ERROR);
|
||||
}
|
||||
|
||||
async function transformCode(inputCode, babelOptions, overrides, customOptions, ctx, finalizeOptions) {
|
||||
// loadPartialConfigAsync has become available in @babel/core@7.8.0
|
||||
const config = await (babel__namespace.loadPartialConfigAsync || babel__namespace.loadPartialConfig)(babelOptions);
|
||||
|
||||
// file is ignored by babel
|
||||
if (!config) {
|
||||
return null;
|
||||
}
|
||||
let transformOptions = !overrides.config ? config.options : await overrides.config.call(ctx, config, {
|
||||
code: inputCode,
|
||||
customOptions
|
||||
});
|
||||
if (finalizeOptions) {
|
||||
transformOptions = await finalizeOptions(transformOptions);
|
||||
}
|
||||
if (!overrides.result) {
|
||||
const {
|
||||
code,
|
||||
map
|
||||
} = await babel__namespace.transformAsync(inputCode, transformOptions);
|
||||
return {
|
||||
code,
|
||||
map
|
||||
};
|
||||
}
|
||||
const result = await babel__namespace.transformAsync(inputCode, transformOptions);
|
||||
const {
|
||||
code,
|
||||
map
|
||||
} = await overrides.result.call(ctx, result, {
|
||||
code: inputCode,
|
||||
customOptions,
|
||||
config,
|
||||
transformOptions
|
||||
});
|
||||
return {
|
||||
code,
|
||||
map
|
||||
};
|
||||
}
|
||||
|
||||
const unpackOptions = ({
|
||||
extensions = babel__namespace.DEFAULT_EXTENSIONS,
|
||||
// rollup uses sourcemap, babel uses sourceMaps
|
||||
// just normalize them here so people don't have to worry about it
|
||||
sourcemap = true,
|
||||
sourcemaps = true,
|
||||
sourceMap = true,
|
||||
sourceMaps = true,
|
||||
...rest
|
||||
} = {}) => {
|
||||
return {
|
||||
extensions,
|
||||
plugins: [],
|
||||
sourceMaps: sourcemap && sourcemaps && sourceMap && sourceMaps,
|
||||
...rest,
|
||||
caller: {
|
||||
name: '@rollup/plugin-babel',
|
||||
...rest.caller
|
||||
}
|
||||
};
|
||||
};
|
||||
const warnAboutDeprecatedHelpersOption = ({
|
||||
deprecatedOption,
|
||||
suggestion
|
||||
}) => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn(`\`${deprecatedOption}\` has been removed in favor a \`babelHelpers\` option. Try changing your configuration to \`${suggestion}\`. ` + `Refer to the documentation to learn more: https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers`);
|
||||
};
|
||||
const unpackInputPluginOptions = ({
|
||||
skipPreflightCheck = false,
|
||||
...rest
|
||||
}, rollupVersion) => {
|
||||
if ('runtimeHelpers' in rest) {
|
||||
warnAboutDeprecatedHelpersOption({
|
||||
deprecatedOption: 'runtimeHelpers',
|
||||
suggestion: `babelHelpers: 'runtime'`
|
||||
});
|
||||
} else if ('externalHelpers' in rest) {
|
||||
warnAboutDeprecatedHelpersOption({
|
||||
deprecatedOption: 'externalHelpers',
|
||||
suggestion: `babelHelpers: 'external'`
|
||||
});
|
||||
} else if (!rest.babelHelpers) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn("babelHelpers: 'bundled' option was used by default. It is recommended to configure this option explicitly, read more here: " + 'https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers');
|
||||
}
|
||||
return unpackOptions({
|
||||
...rest,
|
||||
skipPreflightCheck,
|
||||
babelHelpers: rest.babelHelpers || BUNDLED,
|
||||
caller: {
|
||||
supportsStaticESM: true,
|
||||
supportsDynamicImport: true,
|
||||
supportsTopLevelAwait: true,
|
||||
// todo: remove version checks for 1.20 - 1.25 when we bump peer deps
|
||||
supportsExportNamespaceFrom: !rollupVersion.match(/^1\.2[0-5]\./),
|
||||
...rest.caller
|
||||
}
|
||||
});
|
||||
};
|
||||
const unpackOutputPluginOptions = (options, {
|
||||
format
|
||||
}) => unpackOptions({
|
||||
configFile: false,
|
||||
sourceType: format === 'es' ? 'module' : 'script',
|
||||
...options,
|
||||
caller: {
|
||||
supportsStaticESM: format === 'es',
|
||||
...options.caller
|
||||
}
|
||||
});
|
||||
function getOptionsWithOverrides(pluginOptions = {}, overrides = {}) {
|
||||
if (!overrides.options) return {
|
||||
customOptions: null,
|
||||
pluginOptionsWithOverrides: pluginOptions
|
||||
};
|
||||
const overridden = overrides.options(pluginOptions);
|
||||
if (typeof overridden.then === 'function') {
|
||||
throw new Error(".options hook can't be asynchronous. It should return `{ customOptions, pluginsOptions }` synchronously.");
|
||||
}
|
||||
return {
|
||||
customOptions: overridden.customOptions || null,
|
||||
pluginOptionsWithOverrides: overridden.pluginOptions || pluginOptions
|
||||
};
|
||||
}
|
||||
const returnObject = () => {
|
||||
return {};
|
||||
};
|
||||
function createBabelInputPluginFactory(customCallback = returnObject) {
|
||||
const overrides = customCallback(babel__namespace);
|
||||
return pluginOptions => {
|
||||
const {
|
||||
customOptions,
|
||||
pluginOptionsWithOverrides
|
||||
} = getOptionsWithOverrides(pluginOptions, overrides);
|
||||
let babelHelpers;
|
||||
let babelOptions;
|
||||
let filter;
|
||||
let skipPreflightCheck;
|
||||
return {
|
||||
name: 'babel',
|
||||
options() {
|
||||
// todo: remove options hook and hoist declarations when version checks are removed
|
||||
let exclude;
|
||||
let include;
|
||||
let extensions;
|
||||
let customFilter;
|
||||
({
|
||||
exclude,
|
||||
extensions,
|
||||
babelHelpers,
|
||||
include,
|
||||
filter: customFilter,
|
||||
skipPreflightCheck,
|
||||
...babelOptions
|
||||
} = unpackInputPluginOptions(pluginOptionsWithOverrides, this.meta.rollupVersion));
|
||||
const extensionRegExp = new RegExp(`(${extensions.map(escapeRegExpCharacters).join('|')})$`);
|
||||
if (customFilter && (include || exclude)) {
|
||||
throw new Error('Could not handle include or exclude with custom filter together');
|
||||
}
|
||||
const userDefinedFilter = typeof customFilter === 'function' ? customFilter : pluginutils.createFilter(include, exclude);
|
||||
filter = id => extensionRegExp.test(stripQuery(id).bareId) && userDefinedFilter(id);
|
||||
return null;
|
||||
},
|
||||
resolveId(id) {
|
||||
if (id !== HELPERS) {
|
||||
return null;
|
||||
}
|
||||
return id;
|
||||
},
|
||||
load(id) {
|
||||
if (id !== HELPERS) {
|
||||
return null;
|
||||
}
|
||||
return babel__namespace.buildExternalHelpers(null, 'module');
|
||||
},
|
||||
transform(code, filename) {
|
||||
if (!filter(filename)) return null;
|
||||
if (filename === HELPERS) return null;
|
||||
return transformCode(code, {
|
||||
...babelOptions,
|
||||
filename
|
||||
}, overrides, customOptions, this, async transformOptions => {
|
||||
if (!skipPreflightCheck) {
|
||||
await preflightCheck(this, babelHelpers, transformOptions);
|
||||
}
|
||||
return babelHelpers === BUNDLED ? addBabelPlugin(transformOptions, importHelperPlugin) : transformOptions;
|
||||
});
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
function getRecommendedFormat(rollupFormat) {
|
||||
switch (rollupFormat) {
|
||||
case 'amd':
|
||||
return 'amd';
|
||||
case 'iife':
|
||||
case 'umd':
|
||||
return 'umd';
|
||||
case 'system':
|
||||
return 'systemjs';
|
||||
default:
|
||||
return '<module format>';
|
||||
}
|
||||
}
|
||||
function createBabelOutputPluginFactory(customCallback = returnObject) {
|
||||
const overrides = customCallback(babel__namespace);
|
||||
return pluginOptions => {
|
||||
const {
|
||||
customOptions,
|
||||
pluginOptionsWithOverrides
|
||||
} = getOptionsWithOverrides(pluginOptions, overrides);
|
||||
|
||||
// cache for chunk name filter (includeChunks/excludeChunks)
|
||||
let chunkNameFilter;
|
||||
return {
|
||||
name: 'babel',
|
||||
renderStart(outputOptions) {
|
||||
const {
|
||||
extensions,
|
||||
include,
|
||||
exclude,
|
||||
allowAllFormats
|
||||
} = pluginOptionsWithOverrides;
|
||||
if (extensions || include || exclude) {
|
||||
warnOnce(this, 'The "include", "exclude" and "extensions" options are ignored when transforming the output.');
|
||||
}
|
||||
if (!allowAllFormats && outputOptions.format !== 'es' && outputOptions.format !== 'cjs') {
|
||||
this.error(`Using Babel on the generated chunks is strongly discouraged for formats other than "esm" or "cjs" as it can easily break wrapper code and lead to accidentally created global variables. Instead, you should set "output.format" to "esm" and use Babel to transform to another format, e.g. by adding "presets: [['@babel/env', { modules: '${getRecommendedFormat(outputOptions.format)}' }]]" to your Babel options. If you still want to proceed, add "allowAllFormats: true" to your plugin options.`);
|
||||
}
|
||||
},
|
||||
renderChunk(code, chunk, outputOptions) {
|
||||
/* eslint-disable no-unused-vars */
|
||||
const {
|
||||
allowAllFormats,
|
||||
includeChunks,
|
||||
excludeChunks,
|
||||
exclude,
|
||||
extensions,
|
||||
externalHelpers,
|
||||
externalHelpersWhitelist,
|
||||
include,
|
||||
runtimeHelpers,
|
||||
...babelOptions
|
||||
} = unpackOutputPluginOptions(pluginOptionsWithOverrides, outputOptions);
|
||||
/* eslint-enable no-unused-vars */
|
||||
// If includeChunks/excludeChunks are specified, filter by chunk.name
|
||||
if (includeChunks != null || excludeChunks != null) {
|
||||
if (!chunkNameFilter) {
|
||||
chunkNameFilter = pluginutils.createFilter(includeChunks, excludeChunks, {
|
||||
resolve: false
|
||||
});
|
||||
}
|
||||
if (!chunkNameFilter(chunk.name)) {
|
||||
// Skip transforming this chunk
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return transformCode(code, babelOptions, overrides, customOptions, this);
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
// export this for symmetry with output-related exports
|
||||
const getBabelInputPlugin = createBabelInputPluginFactory();
|
||||
const getBabelOutputPlugin = createBabelOutputPluginFactory();
|
||||
|
||||
exports.babel = getBabelInputPlugin;
|
||||
exports.createBabelInputPluginFactory = createBabelInputPluginFactory;
|
||||
exports.createBabelOutputPluginFactory = createBabelOutputPluginFactory;
|
||||
exports.default = getBabelInputPlugin;
|
||||
exports.getBabelInputPlugin = getBabelInputPlugin;
|
||||
exports.getBabelOutputPlugin = getBabelOutputPlugin;
|
||||
module.exports = Object.assign(exports.default, exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
+381
@@ -0,0 +1,381 @@
|
||||
import * as babel from '@babel/core';
|
||||
import { createFilter } from '@rollup/pluginutils';
|
||||
import { addNamed } from '@babel/helper-module-imports';
|
||||
|
||||
const BUNDLED = 'bundled';
|
||||
const INLINE = 'inline';
|
||||
const RUNTIME = 'runtime';
|
||||
const EXTERNAL = 'external';
|
||||
|
||||
// NOTE: DO NOT REMOVE the null character `\0` as it may be used by other plugins
|
||||
// e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74
|
||||
const HELPERS = '\0rollupPluginBabelHelpers.js';
|
||||
|
||||
function importHelperPlugin({
|
||||
types: t
|
||||
}) {
|
||||
return {
|
||||
pre(file) {
|
||||
const cachedHelpers = {};
|
||||
file.set('helperGenerator', name => {
|
||||
if (!file.availableHelper(name)) {
|
||||
return null;
|
||||
}
|
||||
if (cachedHelpers[name]) {
|
||||
return t.cloneNode(cachedHelpers[name]);
|
||||
}
|
||||
return cachedHelpers[name] = addNamed(file.path, name, HELPERS);
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
const addBabelPlugin = (options, plugin) => {
|
||||
return {
|
||||
...options,
|
||||
plugins: options.plugins.concat(plugin)
|
||||
};
|
||||
};
|
||||
const warned = {};
|
||||
function warnOnce(ctx, msg) {
|
||||
if (warned[msg]) return;
|
||||
warned[msg] = true;
|
||||
ctx.warn(msg);
|
||||
}
|
||||
const regExpCharactersRegExp = /[\\^$.*+?()[\]{}|]/g;
|
||||
const escapeRegExpCharacters = str => str.replace(regExpCharactersRegExp, '\\$&');
|
||||
function stripQuery(id) {
|
||||
// strip query params from import
|
||||
const [bareId, query] = id.split('?');
|
||||
const suffix = `${query ? `?${query}` : ''}`;
|
||||
return {
|
||||
bareId,
|
||||
query,
|
||||
suffix
|
||||
};
|
||||
}
|
||||
|
||||
const MODULE_ERROR = 'Rollup requires that your Babel configuration keeps ES6 module syntax intact. ' + 'Unfortunately it looks like your configuration specifies a module transformer ' + 'to replace ES6 modules with another module format. To continue you have to disable it.' + '\n\n' + "Most commonly it's a CommonJS transform added by @babel/preset-env - " + 'in such case you should disable it by adding `modules: false` option to that preset ' + '(described in more detail here - https://github.com/rollup/plugins/tree/master/packages/babel#modules ).';
|
||||
const UNEXPECTED_ERROR = 'An unexpected situation arose. Please raise an issue at ' + 'https://github.com/rollup/plugins/issues. Thanks!';
|
||||
const PREFLIGHT_TEST_STRING = '__ROLLUP__PREFLIGHT_CHECK_DO_NOT_TOUCH__';
|
||||
const PREFLIGHT_INPUT = `export default "${PREFLIGHT_TEST_STRING}";`;
|
||||
function helpersTestTransform() {
|
||||
return {
|
||||
visitor: {
|
||||
StringLiteral(path, state) {
|
||||
if (path.node.value === PREFLIGHT_TEST_STRING) {
|
||||
path.replaceWith(state.file.addHelper('inherits'));
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
const mismatchError = (actual, expected, filename) => `You have declared using "${expected}" babelHelpers, but transforming ${filename} resulted in "${actual}". Please check your configuration.`;
|
||||
|
||||
// Revert to /\/helpers\/(esm\/)?inherits/ when Babel 8 gets released, this was fixed in https://github.com/babel/babel/issues/14185
|
||||
const inheritsHelperRe = /[\\/]+helpers[\\/]+(esm[\\/]+)?inherits/;
|
||||
async function preflightCheck(ctx, babelHelpers, transformOptions) {
|
||||
const finalOptions = addBabelPlugin(transformOptions, helpersTestTransform);
|
||||
const check = (await babel.transformAsync(PREFLIGHT_INPUT, finalOptions)).code;
|
||||
|
||||
// Babel sometimes splits ExportDefaultDeclaration into 2 statements, so we also check for ExportNamedDeclaration
|
||||
if (!/export (d|{)/.test(check)) {
|
||||
ctx.error(MODULE_ERROR);
|
||||
}
|
||||
if (inheritsHelperRe.test(check)) {
|
||||
if (babelHelpers === RUNTIME) {
|
||||
return;
|
||||
}
|
||||
ctx.error(mismatchError(RUNTIME, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
if (check.includes('babelHelpers.inherits')) {
|
||||
if (babelHelpers === EXTERNAL) {
|
||||
return;
|
||||
}
|
||||
ctx.error(mismatchError(EXTERNAL, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
|
||||
// test unminifiable string content
|
||||
if (check.includes('Super expression must either be null or a function')) {
|
||||
if (babelHelpers === INLINE || babelHelpers === BUNDLED) {
|
||||
return;
|
||||
}
|
||||
if (babelHelpers === RUNTIME && !transformOptions.plugins.length) {
|
||||
ctx.error(`You must use the \`@babel/plugin-transform-runtime\` plugin when \`babelHelpers\` is "${RUNTIME}".\n`);
|
||||
}
|
||||
ctx.error(mismatchError(INLINE, babelHelpers, transformOptions.filename));
|
||||
}
|
||||
ctx.error(UNEXPECTED_ERROR);
|
||||
}
|
||||
|
||||
async function transformCode(inputCode, babelOptions, overrides, customOptions, ctx, finalizeOptions) {
|
||||
// loadPartialConfigAsync has become available in @babel/core@7.8.0
|
||||
const config = await (babel.loadPartialConfigAsync || babel.loadPartialConfig)(babelOptions);
|
||||
|
||||
// file is ignored by babel
|
||||
if (!config) {
|
||||
return null;
|
||||
}
|
||||
let transformOptions = !overrides.config ? config.options : await overrides.config.call(ctx, config, {
|
||||
code: inputCode,
|
||||
customOptions
|
||||
});
|
||||
if (finalizeOptions) {
|
||||
transformOptions = await finalizeOptions(transformOptions);
|
||||
}
|
||||
if (!overrides.result) {
|
||||
const {
|
||||
code,
|
||||
map
|
||||
} = await babel.transformAsync(inputCode, transformOptions);
|
||||
return {
|
||||
code,
|
||||
map
|
||||
};
|
||||
}
|
||||
const result = await babel.transformAsync(inputCode, transformOptions);
|
||||
const {
|
||||
code,
|
||||
map
|
||||
} = await overrides.result.call(ctx, result, {
|
||||
code: inputCode,
|
||||
customOptions,
|
||||
config,
|
||||
transformOptions
|
||||
});
|
||||
return {
|
||||
code,
|
||||
map
|
||||
};
|
||||
}
|
||||
|
||||
const unpackOptions = ({
|
||||
extensions = babel.DEFAULT_EXTENSIONS,
|
||||
// rollup uses sourcemap, babel uses sourceMaps
|
||||
// just normalize them here so people don't have to worry about it
|
||||
sourcemap = true,
|
||||
sourcemaps = true,
|
||||
sourceMap = true,
|
||||
sourceMaps = true,
|
||||
...rest
|
||||
} = {}) => {
|
||||
return {
|
||||
extensions,
|
||||
plugins: [],
|
||||
sourceMaps: sourcemap && sourcemaps && sourceMap && sourceMaps,
|
||||
...rest,
|
||||
caller: {
|
||||
name: '@rollup/plugin-babel',
|
||||
...rest.caller
|
||||
}
|
||||
};
|
||||
};
|
||||
const warnAboutDeprecatedHelpersOption = ({
|
||||
deprecatedOption,
|
||||
suggestion
|
||||
}) => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn(`\`${deprecatedOption}\` has been removed in favor a \`babelHelpers\` option. Try changing your configuration to \`${suggestion}\`. ` + `Refer to the documentation to learn more: https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers`);
|
||||
};
|
||||
const unpackInputPluginOptions = ({
|
||||
skipPreflightCheck = false,
|
||||
...rest
|
||||
}, rollupVersion) => {
|
||||
if ('runtimeHelpers' in rest) {
|
||||
warnAboutDeprecatedHelpersOption({
|
||||
deprecatedOption: 'runtimeHelpers',
|
||||
suggestion: `babelHelpers: 'runtime'`
|
||||
});
|
||||
} else if ('externalHelpers' in rest) {
|
||||
warnAboutDeprecatedHelpersOption({
|
||||
deprecatedOption: 'externalHelpers',
|
||||
suggestion: `babelHelpers: 'external'`
|
||||
});
|
||||
} else if (!rest.babelHelpers) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn("babelHelpers: 'bundled' option was used by default. It is recommended to configure this option explicitly, read more here: " + 'https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers');
|
||||
}
|
||||
return unpackOptions({
|
||||
...rest,
|
||||
skipPreflightCheck,
|
||||
babelHelpers: rest.babelHelpers || BUNDLED,
|
||||
caller: {
|
||||
supportsStaticESM: true,
|
||||
supportsDynamicImport: true,
|
||||
supportsTopLevelAwait: true,
|
||||
// todo: remove version checks for 1.20 - 1.25 when we bump peer deps
|
||||
supportsExportNamespaceFrom: !rollupVersion.match(/^1\.2[0-5]\./),
|
||||
...rest.caller
|
||||
}
|
||||
});
|
||||
};
|
||||
const unpackOutputPluginOptions = (options, {
|
||||
format
|
||||
}) => unpackOptions({
|
||||
configFile: false,
|
||||
sourceType: format === 'es' ? 'module' : 'script',
|
||||
...options,
|
||||
caller: {
|
||||
supportsStaticESM: format === 'es',
|
||||
...options.caller
|
||||
}
|
||||
});
|
||||
function getOptionsWithOverrides(pluginOptions = {}, overrides = {}) {
|
||||
if (!overrides.options) return {
|
||||
customOptions: null,
|
||||
pluginOptionsWithOverrides: pluginOptions
|
||||
};
|
||||
const overridden = overrides.options(pluginOptions);
|
||||
if (typeof overridden.then === 'function') {
|
||||
throw new Error(".options hook can't be asynchronous. It should return `{ customOptions, pluginsOptions }` synchronously.");
|
||||
}
|
||||
return {
|
||||
customOptions: overridden.customOptions || null,
|
||||
pluginOptionsWithOverrides: overridden.pluginOptions || pluginOptions
|
||||
};
|
||||
}
|
||||
const returnObject = () => {
|
||||
return {};
|
||||
};
|
||||
function createBabelInputPluginFactory(customCallback = returnObject) {
|
||||
const overrides = customCallback(babel);
|
||||
return pluginOptions => {
|
||||
const {
|
||||
customOptions,
|
||||
pluginOptionsWithOverrides
|
||||
} = getOptionsWithOverrides(pluginOptions, overrides);
|
||||
let babelHelpers;
|
||||
let babelOptions;
|
||||
let filter;
|
||||
let skipPreflightCheck;
|
||||
return {
|
||||
name: 'babel',
|
||||
options() {
|
||||
// todo: remove options hook and hoist declarations when version checks are removed
|
||||
let exclude;
|
||||
let include;
|
||||
let extensions;
|
||||
let customFilter;
|
||||
({
|
||||
exclude,
|
||||
extensions,
|
||||
babelHelpers,
|
||||
include,
|
||||
filter: customFilter,
|
||||
skipPreflightCheck,
|
||||
...babelOptions
|
||||
} = unpackInputPluginOptions(pluginOptionsWithOverrides, this.meta.rollupVersion));
|
||||
const extensionRegExp = new RegExp(`(${extensions.map(escapeRegExpCharacters).join('|')})$`);
|
||||
if (customFilter && (include || exclude)) {
|
||||
throw new Error('Could not handle include or exclude with custom filter together');
|
||||
}
|
||||
const userDefinedFilter = typeof customFilter === 'function' ? customFilter : createFilter(include, exclude);
|
||||
filter = id => extensionRegExp.test(stripQuery(id).bareId) && userDefinedFilter(id);
|
||||
return null;
|
||||
},
|
||||
resolveId(id) {
|
||||
if (id !== HELPERS) {
|
||||
return null;
|
||||
}
|
||||
return id;
|
||||
},
|
||||
load(id) {
|
||||
if (id !== HELPERS) {
|
||||
return null;
|
||||
}
|
||||
return babel.buildExternalHelpers(null, 'module');
|
||||
},
|
||||
transform(code, filename) {
|
||||
if (!filter(filename)) return null;
|
||||
if (filename === HELPERS) return null;
|
||||
return transformCode(code, {
|
||||
...babelOptions,
|
||||
filename
|
||||
}, overrides, customOptions, this, async transformOptions => {
|
||||
if (!skipPreflightCheck) {
|
||||
await preflightCheck(this, babelHelpers, transformOptions);
|
||||
}
|
||||
return babelHelpers === BUNDLED ? addBabelPlugin(transformOptions, importHelperPlugin) : transformOptions;
|
||||
});
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
function getRecommendedFormat(rollupFormat) {
|
||||
switch (rollupFormat) {
|
||||
case 'amd':
|
||||
return 'amd';
|
||||
case 'iife':
|
||||
case 'umd':
|
||||
return 'umd';
|
||||
case 'system':
|
||||
return 'systemjs';
|
||||
default:
|
||||
return '<module format>';
|
||||
}
|
||||
}
|
||||
function createBabelOutputPluginFactory(customCallback = returnObject) {
|
||||
const overrides = customCallback(babel);
|
||||
return pluginOptions => {
|
||||
const {
|
||||
customOptions,
|
||||
pluginOptionsWithOverrides
|
||||
} = getOptionsWithOverrides(pluginOptions, overrides);
|
||||
|
||||
// cache for chunk name filter (includeChunks/excludeChunks)
|
||||
let chunkNameFilter;
|
||||
return {
|
||||
name: 'babel',
|
||||
renderStart(outputOptions) {
|
||||
const {
|
||||
extensions,
|
||||
include,
|
||||
exclude,
|
||||
allowAllFormats
|
||||
} = pluginOptionsWithOverrides;
|
||||
if (extensions || include || exclude) {
|
||||
warnOnce(this, 'The "include", "exclude" and "extensions" options are ignored when transforming the output.');
|
||||
}
|
||||
if (!allowAllFormats && outputOptions.format !== 'es' && outputOptions.format !== 'cjs') {
|
||||
this.error(`Using Babel on the generated chunks is strongly discouraged for formats other than "esm" or "cjs" as it can easily break wrapper code and lead to accidentally created global variables. Instead, you should set "output.format" to "esm" and use Babel to transform to another format, e.g. by adding "presets: [['@babel/env', { modules: '${getRecommendedFormat(outputOptions.format)}' }]]" to your Babel options. If you still want to proceed, add "allowAllFormats: true" to your plugin options.`);
|
||||
}
|
||||
},
|
||||
renderChunk(code, chunk, outputOptions) {
|
||||
/* eslint-disable no-unused-vars */
|
||||
const {
|
||||
allowAllFormats,
|
||||
includeChunks,
|
||||
excludeChunks,
|
||||
exclude,
|
||||
extensions,
|
||||
externalHelpers,
|
||||
externalHelpersWhitelist,
|
||||
include,
|
||||
runtimeHelpers,
|
||||
...babelOptions
|
||||
} = unpackOutputPluginOptions(pluginOptionsWithOverrides, outputOptions);
|
||||
/* eslint-enable no-unused-vars */
|
||||
// If includeChunks/excludeChunks are specified, filter by chunk.name
|
||||
if (includeChunks != null || excludeChunks != null) {
|
||||
if (!chunkNameFilter) {
|
||||
chunkNameFilter = createFilter(includeChunks, excludeChunks, {
|
||||
resolve: false
|
||||
});
|
||||
}
|
||||
if (!chunkNameFilter(chunk.name)) {
|
||||
// Skip transforming this chunk
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return transformCode(code, babelOptions, overrides, customOptions, this);
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
// export this for symmetry with output-related exports
|
||||
const getBabelInputPlugin = createBabelInputPluginFactory();
|
||||
const getBabelOutputPlugin = createBabelOutputPluginFactory();
|
||||
|
||||
export { getBabelInputPlugin as babel, createBabelInputPluginFactory, createBabelOutputPluginFactory, getBabelInputPlugin as default, getBabelInputPlugin, getBabelOutputPlugin };
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
{
|
||||
"name": "@rollup/plugin-babel",
|
||||
"version": "6.1.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"description": "Seamless integration between Rollup and Babel.",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"url": "rollup/plugins",
|
||||
"directory": "packages/babel"
|
||||
},
|
||||
"author": "Rich Harris",
|
||||
"homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme",
|
||||
"bugs": "https://github.com/rollup/plugins/issues",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/es/index.js",
|
||||
"exports": {
|
||||
"types": "./types/index.d.ts",
|
||||
"import": "./dist/es/index.js",
|
||||
"default": "./dist/cjs/index.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/**/*.map",
|
||||
"types",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"keywords": [
|
||||
"rollup",
|
||||
"plugin",
|
||||
"rollup-plugin",
|
||||
"babel",
|
||||
"es2015",
|
||||
"es6"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0",
|
||||
"@types/babel__core": "^7.1.9",
|
||||
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"rollup": {
|
||||
"optional": true
|
||||
},
|
||||
"@types/babel__core": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "^7.18.6",
|
||||
"@rollup/pluginutils": "^5.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.19.1",
|
||||
"@babel/plugin-external-helpers": "^7.18.6",
|
||||
"@babel/plugin-proposal-decorators": "^7.19.1",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-transform-runtime": "^7.19.1",
|
||||
"@babel/preset-env": "^7.19.1",
|
||||
"@rollup/plugin-json": "^5.0.0",
|
||||
"@rollup/plugin-node-resolve": "^15.0.0",
|
||||
"@types/babel__core": "^7.1.9",
|
||||
"rollup": "^4.0.0-24",
|
||||
"source-map": "^0.7.4"
|
||||
},
|
||||
"types": "./types/index.d.ts",
|
||||
"ava": {
|
||||
"files": [
|
||||
"!**/fixtures/**",
|
||||
"!**/helpers/**",
|
||||
"!**/recipes/**",
|
||||
"!**/types.ts"
|
||||
]
|
||||
},
|
||||
"contributors": [
|
||||
"Bogdan Chadkin <trysound@yandex.ru>",
|
||||
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
||||
"ci:lint": "pnpm build && pnpm lint",
|
||||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
||||
"ci:test": "pnpm test -- --verbose",
|
||||
"prebuild": "del-cli dist",
|
||||
"prerelease": "pnpm build",
|
||||
"pretest": "pnpm build",
|
||||
"release": "pnpm --workspace-root package:release $(pwd)",
|
||||
"test": "ava",
|
||||
"test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
||||
}
|
||||
}
|
||||
+143
@@ -0,0 +1,143 @@
|
||||
import type { Plugin, PluginContext, TransformPluginContext } from 'rollup';
|
||||
import type { FilterPattern, CreateFilter } from '@rollup/pluginutils';
|
||||
import type * as babelCore from '@babel/core';
|
||||
|
||||
export interface RollupBabelInputPluginOptions
|
||||
extends Omit<babelCore.TransformOptions, 'include' | 'exclude'> {
|
||||
/**
|
||||
* A picomatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there.
|
||||
* @default undefined;
|
||||
*/
|
||||
include?: FilterPattern;
|
||||
/**
|
||||
* A picomatch pattern, or array of patterns, which specifies the files in the build the plugin should ignore. When relaying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself.
|
||||
* @default undefined;
|
||||
*/
|
||||
exclude?: FilterPattern;
|
||||
/**
|
||||
* Custom filter function can be used to determine whether or not certain modules should be operated upon.
|
||||
* Example:
|
||||
* import { createFilter } from '@rollup/pluginutils';
|
||||
* const include = 'include/**.js';
|
||||
* const exclude = 'exclude/**.js';
|
||||
* const filter = createFilter(include, exclude, {});
|
||||
* @default undefined;
|
||||
*/
|
||||
filter?: ReturnType<CreateFilter>;
|
||||
/**
|
||||
* An array of file extensions that Babel should transpile. If you want to transpile TypeScript files with this plugin it's essential to include .ts and .tsx in this option.
|
||||
* @default ['.js', '.jsx', '.es6', '.es', '.mjs']
|
||||
*/
|
||||
extensions?: string[];
|
||||
/**
|
||||
* It is recommended to configure this option explicitly (even if with its default value) so an informed decision is taken on how those babel helpers are inserted into the code.
|
||||
* @default 'bundled'
|
||||
*/
|
||||
babelHelpers?: 'bundled' | 'runtime' | 'inline' | 'external';
|
||||
/**
|
||||
* Before transpiling your input files this plugin also transpile a short piece of code for each input file. This is used to validate some misconfiguration errors, but for sufficiently big projects it can slow your build times so if you are confident about your configuration then you might disable those checks with this option.
|
||||
* @default false
|
||||
*/
|
||||
skipPreflightCheck?: boolean;
|
||||
}
|
||||
|
||||
export interface RollupBabelOutputPluginOptions
|
||||
extends Omit<babelCore.TransformOptions, 'include' | 'exclude'> {
|
||||
/**
|
||||
* Use with other formats than UMD/IIFE.
|
||||
* @default false
|
||||
*/
|
||||
allowAllFormats?: boolean;
|
||||
/**
|
||||
* Limit transforming of generated code to specific manual chunks by name.
|
||||
* These patterns are matched against the `chunk.name` value in Rollup's `renderChunk` hook.
|
||||
*/
|
||||
includeChunks?: FilterPattern;
|
||||
/**
|
||||
* Exclude specific manual chunks by name from transforming the generated code.
|
||||
* These patterns are matched against the `chunk.name` value in Rollup's `renderChunk` hook.
|
||||
*/
|
||||
excludeChunks?: FilterPattern;
|
||||
}
|
||||
|
||||
export type RollupBabelCustomInputPluginOptions = (
|
||||
options: RollupBabelInputPluginOptions & Record<string, any>
|
||||
) => {
|
||||
customOptions: Record<string, any>;
|
||||
pluginOptions: RollupBabelInputPluginOptions;
|
||||
};
|
||||
export type RollupBabelCustomOutputPluginOptions = (
|
||||
options: RollupBabelOutputPluginOptions & Record<string, any>
|
||||
) => {
|
||||
customOptions: Record<string, any>;
|
||||
pluginOptions: RollupBabelOutputPluginOptions;
|
||||
};
|
||||
export interface RollupBabelCustomPluginConfigOptions {
|
||||
code: string;
|
||||
customOptions: Record<string, any>;
|
||||
}
|
||||
export interface RollupBabelCustomPluginResultOptions {
|
||||
code: string;
|
||||
customOptions: Record<string, any>;
|
||||
config: babelCore.PartialConfig;
|
||||
transformOptions: babelCore.TransformOptions;
|
||||
}
|
||||
export type RollupBabelCustomInputPluginConfig = (
|
||||
this: TransformPluginContext,
|
||||
cfg: babelCore.PartialConfig,
|
||||
options: RollupBabelCustomPluginConfigOptions
|
||||
) => babelCore.TransformOptions;
|
||||
export type RollupBabelCustomInputPluginResult = (
|
||||
this: TransformPluginContext,
|
||||
result: babelCore.BabelFileResult,
|
||||
options: RollupBabelCustomPluginResultOptions
|
||||
) => babelCore.BabelFileResult;
|
||||
export type RollupBabelCustomOutputPluginConfig = (
|
||||
this: PluginContext,
|
||||
cfg: babelCore.PartialConfig,
|
||||
options: RollupBabelCustomPluginConfigOptions
|
||||
) => babelCore.TransformOptions;
|
||||
export type RollupBabelCustomOutputPluginResult = (
|
||||
this: PluginContext,
|
||||
result: babelCore.BabelFileResult,
|
||||
options: RollupBabelCustomPluginResultOptions
|
||||
) => babelCore.BabelFileResult;
|
||||
export interface RollupBabelCustomInputPlugin {
|
||||
options?: RollupBabelCustomInputPluginOptions;
|
||||
config?: RollupBabelCustomInputPluginConfig;
|
||||
result?: RollupBabelCustomInputPluginResult;
|
||||
}
|
||||
export interface RollupBabelCustomOutputPlugin {
|
||||
options?: RollupBabelCustomOutputPluginOptions;
|
||||
config?: RollupBabelCustomOutputPluginConfig;
|
||||
result?: RollupBabelCustomOutputPluginResult;
|
||||
}
|
||||
export type RollupBabelCustomInputPluginBuilder = (
|
||||
babel: typeof babelCore
|
||||
) => RollupBabelCustomInputPlugin;
|
||||
export type RollupBabelCustomOutputPluginBuilder = (
|
||||
babel: typeof babelCore
|
||||
) => RollupBabelCustomOutputPlugin;
|
||||
|
||||
/**
|
||||
* A Rollup plugin for seamless integration between Rollup and Babel.
|
||||
* @param options - Plugin options.
|
||||
* @returns Plugin instance.
|
||||
*/
|
||||
export function getBabelInputPlugin(options?: RollupBabelInputPluginOptions): Plugin;
|
||||
export function getBabelOutputPlugin(options?: RollupBabelOutputPluginOptions): Plugin;
|
||||
|
||||
export function createBabelInputPluginFactory(
|
||||
customCallback?: RollupBabelCustomInputPluginBuilder
|
||||
): typeof getBabelInputPlugin;
|
||||
export function createBabelOutputPluginFactory(
|
||||
customCallback?: RollupBabelCustomOutputPluginBuilder
|
||||
): typeof getBabelOutputPlugin;
|
||||
|
||||
/**
|
||||
* A Rollup plugin for seamless integration between Rollup and Babel.
|
||||
* @param options - Plugin options.
|
||||
* @returns Plugin instance.
|
||||
*/
|
||||
export function babel(options?: RollupBabelInputPluginOptions): Plugin;
|
||||
export default babel;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+296
@@ -0,0 +1,296 @@
|
||||
[npm]: https://img.shields.io/npm/v/@rollup/plugin-node-resolve
|
||||
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-node-resolve
|
||||
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-node-resolve
|
||||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-node-resolve
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![size][size]][size-url]
|
||||
[](https://liberamanifesto.com)
|
||||
|
||||
# @rollup/plugin-node-resolve
|
||||
|
||||
🍣 A Rollup plugin which locates modules using the [Node resolution algorithm](https://nodejs.org/api/modules.html#modules_all_together), for using third party modules in `node_modules`
|
||||
|
||||
## Requirements
|
||||
|
||||
This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v2.78.0+.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```console
|
||||
npm install @rollup/plugin-node-resolve --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Create a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:
|
||||
|
||||
```js
|
||||
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
||||
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
dir: 'output',
|
||||
format: 'cjs'
|
||||
},
|
||||
plugins: [nodeResolve()]
|
||||
};
|
||||
```
|
||||
|
||||
Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).
|
||||
|
||||
## Package entrypoints
|
||||
|
||||
This plugin supports the package entrypoints feature from node js, specified in the `exports` or `imports` field of a package. Check the [official documentation](https://nodejs.org/api/packages.html#packages_package_entry_points) for more information on how this works. This is the default behavior. In the abscence of these fields, the fields in `mainFields` will be the ones to be used.
|
||||
|
||||
## Options
|
||||
|
||||
### `exportConditions`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `[]`
|
||||
|
||||
Additional conditions of the package.json exports field to match when resolving modules. By default, this plugin looks for the `['default', 'module', 'import', 'development|production']` conditions when resolving imports. If neither the `development` or `production` conditions are provided it will default to `production` - or `development` if `NODE_ENV` is set to a value other than `production`.
|
||||
|
||||
When using `@rollup/plugin-commonjs` v16 or higher, this plugin will use the `['default', 'module', 'require']` conditions when resolving require statements.
|
||||
|
||||
Setting this option will add extra conditions on top of the default conditions. See https://nodejs.org/api/packages.html#packages_conditional_exports for more information.
|
||||
|
||||
In order to get the [resolution behavior of Node.js](https://nodejs.org/api/packages.html#packages_conditional_exports), set this to `['node']`.
|
||||
|
||||
### `browser`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
If `true`, instructs the plugin to use the browser module resolutions in `package.json` and adds `'browser'` to `exportConditions` if it is not present so browser conditionals in `exports` are applied. If `false`, any browser properties in package files will be ignored. Alternatively, a value of `'browser'` can be added to both the `mainFields` and `exportConditions` options, however this option takes precedence over `mainFields`.
|
||||
|
||||
> This option does not work when a package is using [package entrypoints](https://nodejs.org/api/packages.html#packages_package_entry_points)
|
||||
|
||||
### `moduleDirectories`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `['node_modules']`
|
||||
|
||||
A list of directory names in which to recursively look for modules.
|
||||
|
||||
### `modulePaths`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `[]`
|
||||
|
||||
A list of absolute paths to additional locations to search for modules. [This is analogous to setting the `NODE_PATH` environment variable for node](https://nodejs.org/api/modules.html#loading-from-the-global-folders).
|
||||
|
||||
### `dedupe`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `[]`
|
||||
|
||||
An `Array` of modules names, which instructs the plugin to force resolving for the specified modules to the root `node_modules`. Helps to prevent bundling the same package multiple times if package is imported from dependencies.
|
||||
|
||||
```js
|
||||
dedupe: ['my-package', '@namespace/my-package'];
|
||||
```
|
||||
|
||||
This will deduplicate bare imports such as:
|
||||
|
||||
```js
|
||||
import 'my-package';
|
||||
import '@namespace/my-package';
|
||||
```
|
||||
|
||||
And it will deduplicate deep imports such as:
|
||||
|
||||
```js
|
||||
import 'my-package/foo.js';
|
||||
import '@namespace/my-package/bar.js';
|
||||
```
|
||||
|
||||
### `extensions`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `['.mjs', '.js', '.json', '.node']`
|
||||
|
||||
Specifies the extensions of files that the plugin will operate on.
|
||||
|
||||
### `jail`
|
||||
|
||||
Type: `String`<br>
|
||||
Default: `'/'`
|
||||
|
||||
Locks the module search within specified path (e.g. chroot). Modules defined outside this path will be ignored by this plugin.
|
||||
|
||||
### `mainFields`
|
||||
|
||||
Type: `Array[...String]`<br>
|
||||
Default: `['module', 'main']`<br>
|
||||
Valid values: `['browser', 'jsnext:main', 'module', 'main']`
|
||||
|
||||
Specifies the properties to scan within a `package.json`, used to determine the bundle entry point. The order of property names is significant, as the first-found property is used as the resolved entry point. If the array contains `'browser'`, key/values specified in the `package.json` `browser` property will be used.
|
||||
|
||||
### `preferBuiltins`
|
||||
|
||||
Type: `Boolean | (module: string) => boolean`<br>
|
||||
Default: `true` (with warnings if a builtin module is used over a local version. Set to `true` to disable warning.)
|
||||
|
||||
If `true`, the plugin will prefer built-in modules (e.g. `fs`, `path`). If `false`, the plugin will look for locally installed modules of the same name.
|
||||
|
||||
Alternatively, you may pass in a function that returns a boolean to confirm whether the plugin should prefer built-in modules. e.g.
|
||||
|
||||
```js
|
||||
preferBuiltins: (module) => module !== 'punycode';
|
||||
```
|
||||
|
||||
will not treat `punycode` as a built-in module
|
||||
|
||||
### `modulesOnly`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
If `true`, inspect resolved files to assert that they are ES2015 modules.
|
||||
|
||||
### `resolveOnly`
|
||||
|
||||
Type: `Array[...String|RegExp] | (module: string) => boolean`<br>
|
||||
Default: `null`
|
||||
|
||||
An `Array` which instructs the plugin to limit module resolution to those whose names match patterns in the array. _Note: Modules not matching any patterns will be marked as external._
|
||||
|
||||
Alternatively, you may pass in a function that returns a boolean to confirm whether the module should be included or not.
|
||||
|
||||
Examples:
|
||||
|
||||
- `resolveOnly: ['batman', /^@batcave\/.*$/]`
|
||||
- `resolveOnly: module => !module.includes('joker')`
|
||||
|
||||
### `rootDir`
|
||||
|
||||
Type: `String`<br>
|
||||
Default: `process.cwd()`
|
||||
|
||||
Specifies the root directory from which to resolve modules. Typically used when resolving entry-point imports, and when resolving deduplicated modules. Useful when executing rollup in a package of a mono-repository.
|
||||
|
||||
```
|
||||
// Set the root directory to be the parent folder
|
||||
rootDir: path.join(process.cwd(), '..')
|
||||
```
|
||||
|
||||
### `ignoreSideEffectsForRoot`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
If you use the `sideEffects` property in the package.json, by default this is respected for files in the root package. Set to `true` to ignore the `sideEffects` configuration for the root package.
|
||||
|
||||
### `allowExportsFolderMapping`
|
||||
|
||||
Older Node versions supported exports mappings of folders like
|
||||
|
||||
```json
|
||||
{
|
||||
"exports": {
|
||||
"./foo/": "./dist/foo/"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
This was deprecated with Node 14 and removed in Node 17, instead it is recommended to use exports patterns like
|
||||
|
||||
```json
|
||||
{
|
||||
"exports": {
|
||||
"./foo/*": "./dist/foo/*"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
But for backwards compatibility this behavior is still supported by enabling the `allowExportsFolderMapping` (defaults to `true`).
|
||||
The default value might change in a futur major release.
|
||||
|
||||
## Preserving symlinks
|
||||
|
||||
This plugin honours the rollup [`preserveSymlinks`](https://rollupjs.org/guide/en/#preservesymlinks) option.
|
||||
|
||||
## Using with @rollup/plugin-commonjs
|
||||
|
||||
Since most packages in your node_modules folder are probably legacy CommonJS rather than JavaScript modules, you may need to use [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/master/packages/commonjs):
|
||||
|
||||
```js
|
||||
// rollup.config.js
|
||||
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
||||
import commonjs from '@rollup/plugin-commonjs';
|
||||
|
||||
export default {
|
||||
input: 'main.js',
|
||||
output: {
|
||||
file: 'bundle.js',
|
||||
format: 'iife',
|
||||
name: 'MyModule'
|
||||
},
|
||||
plugins: [nodeResolve(), commonjs()]
|
||||
};
|
||||
```
|
||||
|
||||
## Resolving Built-Ins (like `fs`)
|
||||
|
||||
By default this plugin will prefer built-ins over local modules, marking them as external.
|
||||
|
||||
See [`preferBuiltins`](#preferbuiltins).
|
||||
|
||||
To provide stubbed versions of Node built-ins, use a plugin like [rollup-plugin-node-polyfills](https://github.com/ionic-team/rollup-plugin-node-polyfills) and set `preferBuiltins` to `false`. e.g.
|
||||
|
||||
```js
|
||||
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
||||
import nodePolyfills from 'rollup-plugin-node-polyfills';
|
||||
export default ({
|
||||
input: ...,
|
||||
plugins: [
|
||||
nodePolyfills(),
|
||||
nodeResolve({ preferBuiltins: false })
|
||||
],
|
||||
external: builtins,
|
||||
output: ...
|
||||
})
|
||||
```
|
||||
|
||||
## Resolving Require Statements
|
||||
|
||||
According to [NodeJS module resolution](https://nodejs.org/api/packages.html#packages_package_entry_points) `require` statements should resolve using the `require` condition in the package exports field, while es modules should use the `import` condition.
|
||||
|
||||
The node resolve plugin uses `import` by default, you can opt into using the `require` semantics by passing an extra option to the resolve function:
|
||||
|
||||
```js
|
||||
this.resolve(importee, importer, {
|
||||
skipSelf: true,
|
||||
custom: { 'node-resolve': { isRequire: true } }
|
||||
});
|
||||
```
|
||||
|
||||
## Resolve Options
|
||||
|
||||
After this plugin resolved an import id to its target file in `node_modules`, it will invoke `this.resolve` again with the resolved id. It will pass the following information in the resolve options:
|
||||
|
||||
```js
|
||||
this.resolve(resolved.id, importer, {
|
||||
custom: {
|
||||
'node-resolve': {
|
||||
resolved, // the object with information from node.js resolve
|
||||
importee // the original import id
|
||||
}
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Your plugin can use the `importee` information to map an original import to its resolved file in `node_modules`, in a plugin hook such as `resolveId`.
|
||||
|
||||
The `resolved` object contains the resolved id, which is passed as the first parameter. It also has a property `moduleSideEffects`, which may contain the value from the npm `package.json` field `sideEffects` or `null`.
|
||||
|
||||
## Meta
|
||||
|
||||
[CONTRIBUTING](/.github/CONTRIBUTING.md)
|
||||
|
||||
[LICENSE (MIT)](/LICENSE)
|
||||
+1397
File diff suppressed because it is too large
Load Diff
+1390
File diff suppressed because it is too large
Load Diff
+1
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
+89
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"name": "@rollup/plugin-node-resolve",
|
||||
"version": "16.0.3",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"description": "Locate and bundle third-party dependencies in node_modules",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"url": "rollup/plugins",
|
||||
"directory": "packages/node-resolve"
|
||||
},
|
||||
"author": "Rich Harris <richard.a.harris@gmail.com>",
|
||||
"homepage": "https://github.com/rollup/plugins/tree/master/packages/node-resolve/#readme",
|
||||
"bugs": "https://github.com/rollup/plugins/issues",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/es/index.js",
|
||||
"exports": {
|
||||
"types": "./types/index.d.ts",
|
||||
"import": "./dist/es/index.js",
|
||||
"default": "./dist/cjs/index.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/**/*.map",
|
||||
"types",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"keywords": [
|
||||
"rollup",
|
||||
"plugin",
|
||||
"es2015",
|
||||
"npm",
|
||||
"modules"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"rollup": "^2.78.0||^3.0.0||^4.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"rollup": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@rollup/pluginutils": "^5.0.1",
|
||||
"@types/resolve": "1.20.2",
|
||||
"deepmerge": "^4.2.2",
|
||||
"is-module": "^1.0.0",
|
||||
"resolve": "^1.22.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.19.1",
|
||||
"@babel/plugin-transform-typescript": "^7.10.5",
|
||||
"@rollup/plugin-babel": "^6.0.0",
|
||||
"@rollup/plugin-commonjs": "^23.0.0",
|
||||
"@rollup/plugin-json": "^5.0.0",
|
||||
"es5-ext": "^0.10.62",
|
||||
"rollup": "^4.0.0-24",
|
||||
"source-map": "^0.7.4",
|
||||
"string-capitalize": "^1.0.1"
|
||||
},
|
||||
"types": "./types/index.d.ts",
|
||||
"ava": {
|
||||
"workerThreads": false,
|
||||
"files": [
|
||||
"!**/fixtures/**",
|
||||
"!**/helpers/**",
|
||||
"!**/recipes/**",
|
||||
"!**/types.ts"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
||||
"ci:lint": "pnpm build && pnpm lint",
|
||||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
||||
"ci:test": "pnpm test -- --verbose",
|
||||
"prebuild": "del-cli dist",
|
||||
"prerelease": "pnpm build",
|
||||
"pretest": "pnpm build",
|
||||
"release": "pnpm --workspace-root package:release $(pwd)",
|
||||
"test": "pnpm test:ts && ava",
|
||||
"test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
||||
}
|
||||
}
|
||||
+122
@@ -0,0 +1,122 @@
|
||||
import type { Plugin } from 'rollup';
|
||||
|
||||
export const DEFAULTS: {
|
||||
customResolveOptions: {};
|
||||
dedupe: [];
|
||||
extensions: ['.mjs', '.js', '.json', '.node'];
|
||||
resolveOnly: [];
|
||||
};
|
||||
|
||||
export interface RollupNodeResolveOptions {
|
||||
/**
|
||||
* Additional conditions of the package.json exports field to match when resolving modules.
|
||||
* By default, this plugin looks for the `'default', 'module', 'import']` conditions when resolving imports.
|
||||
*
|
||||
* When using `@rollup/plugin-commonjs` v16 or higher, this plugin will use the
|
||||
* `['default', 'module', 'import']` conditions when resolving require statements.
|
||||
*
|
||||
* Setting this option will add extra conditions on top of the default conditions.
|
||||
* See https://nodejs.org/api/packages.html#packages_conditional_exports for more information.
|
||||
*/
|
||||
exportConditions?: string[];
|
||||
|
||||
/**
|
||||
* If `true`, instructs the plugin to use the `"browser"` property in `package.json`
|
||||
* files to specify alternative files to load for bundling. This is useful when
|
||||
* bundling for a browser environment. Alternatively, a value of `'browser'` can be
|
||||
* added to the `mainFields` option. If `false`, any `"browser"` properties in
|
||||
* package files will be ignored. This option takes precedence over `mainFields`.
|
||||
* @default false
|
||||
*/
|
||||
browser?: boolean;
|
||||
|
||||
/**
|
||||
* A list of directory names in which to recursively look for modules.
|
||||
* @default ['node_modules']
|
||||
*/
|
||||
moduleDirectories?: string[];
|
||||
|
||||
/**
|
||||
* A list of absolute paths to additional locations to search for modules.
|
||||
* This is analogous to setting the `NODE_PATH` environment variable for node.
|
||||
* @default []
|
||||
*/
|
||||
modulePaths?: string[];
|
||||
|
||||
/**
|
||||
* An `Array` of modules names, which instructs the plugin to force resolving for the
|
||||
* specified modules to the root `node_modules`. Helps to prevent bundling the same
|
||||
* package multiple times if package is imported from dependencies.
|
||||
*/
|
||||
dedupe?: string[] | ((importee: string) => boolean);
|
||||
|
||||
/**
|
||||
* Specifies the extensions of files that the plugin will operate on.
|
||||
* @default [ '.mjs', '.js', '.json', '.node' ]
|
||||
*/
|
||||
extensions?: readonly string[];
|
||||
|
||||
/**
|
||||
* Locks the module search within specified path (e.g. chroot). Modules defined
|
||||
* outside this path will be marked as external.
|
||||
* @default '/'
|
||||
*/
|
||||
jail?: string;
|
||||
|
||||
/**
|
||||
* Specifies the properties to scan within a `package.json`, used to determine the
|
||||
* bundle entry point.
|
||||
* @default ['module', 'main']
|
||||
*/
|
||||
mainFields?: readonly string[];
|
||||
|
||||
/**
|
||||
* If `true`, inspect resolved files to assert that they are ES2015 modules.
|
||||
* @default false
|
||||
*/
|
||||
modulesOnly?: boolean;
|
||||
|
||||
/**
|
||||
* If `true`, the plugin will prefer built-in modules (e.g. `fs`, `path`). If `false`,
|
||||
* the plugin will look for locally installed modules of the same name.
|
||||
*
|
||||
* If a function is provided, it will be called to determine whether to prefer built-ins.
|
||||
* @default true
|
||||
*/
|
||||
preferBuiltins?: boolean | ((module: string) => boolean);
|
||||
|
||||
/**
|
||||
* An `Array` which instructs the plugin to limit module resolution to those whose
|
||||
* names match patterns in the array.
|
||||
* @default []
|
||||
*/
|
||||
resolveOnly?: ReadonlyArray<string | RegExp> | null | ((module: string) => boolean);
|
||||
|
||||
/**
|
||||
* Specifies the root directory from which to resolve modules. Typically used when
|
||||
* resolving entry-point imports, and when resolving deduplicated modules.
|
||||
* @default process.cwd()
|
||||
*/
|
||||
rootDir?: string;
|
||||
|
||||
/**
|
||||
* If you use the `sideEffects` property in the package.json, by default this is respected for files in the root package. Set to `true` to ignore the `sideEffects` configuration for the root package.
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
ignoreSideEffectsForRoot?: boolean;
|
||||
|
||||
/**
|
||||
* Allow folder mappings in package exports (trailing /)
|
||||
* This was deprecated in Node 14 and removed with Node 17, see DEP0148.
|
||||
* So this option might be changed to default to `false` in a future release.
|
||||
* @default true
|
||||
*/
|
||||
allowExportsFolderMapping?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Locate modules using the Node resolution algorithm, for using third party modules in node_modules
|
||||
*/
|
||||
export function nodeResolve(options?: RollupNodeResolveOptions): Plugin;
|
||||
export default nodeResolve;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+240
@@ -0,0 +1,240 @@
|
||||
[npm]: https://img.shields.io/npm/v/@rollup/plugin-replace
|
||||
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-replace
|
||||
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-replace
|
||||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-replace
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![size][size]][size-url]
|
||||
[](https://liberamanifesto.com)
|
||||
|
||||
# @rollup/plugin-replace
|
||||
|
||||
🍣 A Rollup plugin which replaces targeted strings in files while bundling.
|
||||
|
||||
## Requirements
|
||||
|
||||
This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v1.20.0+.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```console
|
||||
npm install @rollup/plugin-replace --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Create a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:
|
||||
|
||||
```js
|
||||
import replace from '@rollup/plugin-replace';
|
||||
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
dir: 'output',
|
||||
format: 'cjs'
|
||||
},
|
||||
plugins: [
|
||||
replace({
|
||||
'process.env.NODE_ENV': JSON.stringify('production'),
|
||||
__buildDate__: () => JSON.stringify(new Date()),
|
||||
__buildVersion: 15
|
||||
})
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).
|
||||
|
||||
The configuration above will replace every instance of `process.env.NODE_ENV` with `"production"` and `__buildDate__` with the result of the given function in any file included in the build.
|
||||
|
||||
_Note: Values must be either primitives (e.g. string, number) or `function` that returns a string. For complex values, use `JSON.stringify`. To replace a target with a value that will be evaluated as a string, set the value to a quoted string (e.g. `"test"`) or use `JSON.stringify` to preprocess the target string safely._
|
||||
|
||||
Typically, `@rollup/plugin-replace` should be placed in `plugins` _before_ other plugins so that they may apply optimizations, such as dead code removal.
|
||||
|
||||
## Options
|
||||
|
||||
In addition to the properties and values specified for replacement, users may also specify the options below.
|
||||
|
||||
### `delimiters`
|
||||
|
||||
Type: `Array[String, String]`<br>
|
||||
Default: `['(?<![_$a-zA-Z0-9\\xA0-\\uFFFF])', '(?![_$a-zA-Z0-9\\xA0-\\uFFFF])(?!\\.)']`
|
||||
|
||||
Specifies the boundaries around which strings will be replaced. By default, delimiters match JavaScript identifier boundaries and also prevent replacements of instances with nested access. See [Word Boundaries](#word-boundaries) below for more information.
|
||||
For example, if you pass `typeof window` in `values` to-be-replaced, then you could expect the following scenarios:
|
||||
|
||||
- `typeof window` **will** be replaced
|
||||
- `typeof window.document` **will not** be replaced due to the `(?!\.)` boundary
|
||||
- `typeof windowSmth` **will not** be replaced due to identifier boundaries
|
||||
|
||||
Delimiters will be used to build a `Regexp`. To match special characters (any of `.*+?^${}()|[]\`), be sure to [escape](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping) them.
|
||||
|
||||
### `objectGuards`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
When replacing dot-separated object properties like `process.env.NODE_ENV`, will also replace `typeof process` object guard
|
||||
checks against the objects with the string `"object"`.
|
||||
|
||||
For example:
|
||||
|
||||
```js
|
||||
replace({
|
||||
values: {
|
||||
'process.env.NODE_ENV': '"production"'
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
```js
|
||||
// Input
|
||||
if (typeof process !== 'undefined' && process.env.NODE_ENV === 'production') {
|
||||
console.log('production');
|
||||
}
|
||||
// Without `objectGuards`
|
||||
if (typeof process !== 'undefined' && 'production' === 'production') {
|
||||
console.log('production');
|
||||
}
|
||||
// With `objectGuards`
|
||||
if ('object' !== 'undefined' && 'production' === 'production') {
|
||||
console.log('production');
|
||||
}
|
||||
```
|
||||
|
||||
### `preventAssignment`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
Prevents replacing strings where they are followed by a single equals sign. For example, where the plugin is called as follows:
|
||||
|
||||
```js
|
||||
replace({
|
||||
values: {
|
||||
'process.env.DEBUG': 'false'
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Observe the following code:
|
||||
|
||||
```js
|
||||
// Input
|
||||
process.env.DEBUG = false;
|
||||
if (process.env.DEBUG == true) {
|
||||
//
|
||||
}
|
||||
// Without `preventAssignment`
|
||||
false = false; // this throws an error because false cannot be assigned to
|
||||
if (false == true) {
|
||||
//
|
||||
}
|
||||
// With `preventAssignment`
|
||||
process.env.DEBUG = false;
|
||||
if (false == true) {
|
||||
//
|
||||
}
|
||||
```
|
||||
|
||||
### `exclude`
|
||||
|
||||
Type: `String` | `Array[...String]`<br>
|
||||
Default: `null`
|
||||
|
||||
A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored.
|
||||
|
||||
### `include`
|
||||
|
||||
Type: `String` | `Array[...String]`<br>
|
||||
Default: `null`
|
||||
|
||||
A [picomatch pattern](https://github.com/micromatch/picomatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted.
|
||||
|
||||
### `sourceMap` or `sourcemap`
|
||||
|
||||
Type: `Boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
Enables generating sourcemaps for the bundled code. For example, where the plugin is called as follows:
|
||||
|
||||
```js
|
||||
replace({
|
||||
sourcemap: true
|
||||
});
|
||||
```
|
||||
|
||||
### `values`
|
||||
|
||||
Type: `{ [key: String]: Replacement }`, where `Replacement` is either a string or a `function` that returns a string.
|
||||
Default: `{}`
|
||||
|
||||
To avoid mixing replacement strings with the other options, you can specify replacements in the `values` option. For example, the following signature:
|
||||
|
||||
```js
|
||||
replace({
|
||||
include: ['src/**/*.js'],
|
||||
changed: 'replaced'
|
||||
});
|
||||
```
|
||||
|
||||
Can be replaced with:
|
||||
|
||||
```js
|
||||
replace({
|
||||
include: ['src/**/*.js'],
|
||||
values: {
|
||||
changed: 'replaced'
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
## Word Boundaries
|
||||
|
||||
By default, values will only match if they are surrounded by _word boundaries_ that respect JavaScript's rules for valid identifiers (including `$` and `_` as valid identifier characters).
|
||||
|
||||
Consider the following options and build file:
|
||||
|
||||
```js
|
||||
module.exports = {
|
||||
...
|
||||
plugins: [replace({ changed: 'replaced' })]
|
||||
};
|
||||
```
|
||||
|
||||
```js
|
||||
// file.js
|
||||
console.log('changed');
|
||||
console.log('unchanged');
|
||||
```
|
||||
|
||||
The result would be:
|
||||
|
||||
```js
|
||||
// file.js
|
||||
console.log('replaced');
|
||||
console.log('unchanged');
|
||||
```
|
||||
|
||||
To ignore word boundaries and replace every instance of the string, wherever it may be, specify empty strings as delimiters:
|
||||
|
||||
```js
|
||||
export default {
|
||||
...
|
||||
plugins: [
|
||||
replace({
|
||||
changed: 'replaced',
|
||||
delimiters: ['', '']
|
||||
})
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
## Meta
|
||||
|
||||
[CONTRIBUTING](/.github/CONTRIBUTING.md)
|
||||
|
||||
[LICENSE (MIT)](/LICENSE)
|
||||
+139
@@ -0,0 +1,139 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var MagicString = require('magic-string');
|
||||
var pluginutils = require('@rollup/pluginutils');
|
||||
|
||||
function escape(str) {
|
||||
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&');
|
||||
}
|
||||
|
||||
function ensureFunction(functionOrValue) {
|
||||
if (typeof functionOrValue === 'function') { return functionOrValue; }
|
||||
return function () { return functionOrValue; };
|
||||
}
|
||||
|
||||
function longest(a, b) {
|
||||
return b.length - a.length;
|
||||
}
|
||||
|
||||
function getReplacements(options) {
|
||||
if (options.values) {
|
||||
return Object.assign({}, options.values);
|
||||
}
|
||||
var values = Object.assign({}, options);
|
||||
delete values.delimiters;
|
||||
delete values.include;
|
||||
delete values.exclude;
|
||||
delete values.sourcemap;
|
||||
delete values.sourceMap;
|
||||
delete values.objectGuards;
|
||||
delete values.preventAssignment;
|
||||
return values;
|
||||
}
|
||||
|
||||
function mapToFunctions(object) {
|
||||
return Object.keys(object).reduce(function (fns, key) {
|
||||
var functions = Object.assign({}, fns);
|
||||
functions[key] = ensureFunction(object[key]);
|
||||
return functions;
|
||||
}, {});
|
||||
}
|
||||
|
||||
var objKeyRegEx =
|
||||
/^([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*)(\.([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*))+$/;
|
||||
function expandTypeofReplacements(replacements) {
|
||||
Object.keys(replacements).forEach(function (key) {
|
||||
var objMatch = key.match(objKeyRegEx);
|
||||
if (!objMatch) { return; }
|
||||
var dotIndex = objMatch[1].length;
|
||||
do {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
replacements[("typeof " + (key.slice(0, dotIndex)))] = '"object"';
|
||||
dotIndex = key.indexOf('.', dotIndex + 1);
|
||||
} while (dotIndex !== -1);
|
||||
});
|
||||
}
|
||||
|
||||
function replace(options) {
|
||||
if ( options === void 0 ) options = {};
|
||||
|
||||
var filter = pluginutils.createFilter(options.include, options.exclude);
|
||||
var delimiters = options.delimiters; if ( delimiters === void 0 ) delimiters = ['(?<![_$a-zA-Z0-9\\xA0-\\uFFFF])', '(?![_$a-zA-Z0-9\\xA0-\\uFFFF])(?!\\.)'];
|
||||
var preventAssignment = options.preventAssignment;
|
||||
var objectGuards = options.objectGuards;
|
||||
var replacements = getReplacements(options);
|
||||
if (objectGuards) { expandTypeofReplacements(replacements); }
|
||||
var functionValues = mapToFunctions(replacements);
|
||||
var keys = Object.keys(functionValues).sort(longest).map(escape);
|
||||
var lookbehind = preventAssignment ? '(?<!\\b(?:const|let|var)\\s*)' : '';
|
||||
var lookahead = preventAssignment ? '(?!\\s*=[^=])' : '';
|
||||
var pattern = new RegExp(
|
||||
("" + lookbehind + (delimiters[0]) + "(" + (keys.join('|')) + ")" + (delimiters[1]) + lookahead),
|
||||
'g'
|
||||
);
|
||||
|
||||
return {
|
||||
name: 'replace',
|
||||
|
||||
buildStart: function buildStart() {
|
||||
if (![true, false].includes(preventAssignment)) {
|
||||
this.warn({
|
||||
message:
|
||||
"@rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`."
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
renderChunk: function renderChunk(code, chunk) {
|
||||
var id = chunk.fileName;
|
||||
if (!keys.length) { return null; }
|
||||
if (!filter(id)) { return null; }
|
||||
return executeReplacement(code, id);
|
||||
},
|
||||
|
||||
transform: function transform(code, id) {
|
||||
if (!keys.length) { return null; }
|
||||
if (!filter(id)) { return null; }
|
||||
return executeReplacement(code, id);
|
||||
}
|
||||
};
|
||||
|
||||
function executeReplacement(code, id) {
|
||||
var magicString = new MagicString(code);
|
||||
if (!codeHasReplacements(code, id, magicString)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var result = { code: magicString.toString() };
|
||||
if (isSourceMapEnabled()) {
|
||||
result.map = magicString.generateMap({ hires: true });
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function codeHasReplacements(code, id, magicString) {
|
||||
var result = false;
|
||||
var match;
|
||||
|
||||
// eslint-disable-next-line no-cond-assign
|
||||
while ((match = pattern.exec(code))) {
|
||||
result = true;
|
||||
|
||||
var start = match.index;
|
||||
var end = start + match[0].length;
|
||||
var replacement = String(functionValues[match[1]](id));
|
||||
magicString.overwrite(start, end, replacement);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function isSourceMapEnabled() {
|
||||
return options.sourceMap !== false && options.sourcemap !== false;
|
||||
}
|
||||
}
|
||||
|
||||
exports.default = replace;
|
||||
module.exports = Object.assign(exports.default, exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
+134
@@ -0,0 +1,134 @@
|
||||
import MagicString from 'magic-string';
|
||||
import { createFilter } from '@rollup/pluginutils';
|
||||
|
||||
function escape(str) {
|
||||
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&');
|
||||
}
|
||||
|
||||
function ensureFunction(functionOrValue) {
|
||||
if (typeof functionOrValue === 'function') { return functionOrValue; }
|
||||
return function () { return functionOrValue; };
|
||||
}
|
||||
|
||||
function longest(a, b) {
|
||||
return b.length - a.length;
|
||||
}
|
||||
|
||||
function getReplacements(options) {
|
||||
if (options.values) {
|
||||
return Object.assign({}, options.values);
|
||||
}
|
||||
var values = Object.assign({}, options);
|
||||
delete values.delimiters;
|
||||
delete values.include;
|
||||
delete values.exclude;
|
||||
delete values.sourcemap;
|
||||
delete values.sourceMap;
|
||||
delete values.objectGuards;
|
||||
delete values.preventAssignment;
|
||||
return values;
|
||||
}
|
||||
|
||||
function mapToFunctions(object) {
|
||||
return Object.keys(object).reduce(function (fns, key) {
|
||||
var functions = Object.assign({}, fns);
|
||||
functions[key] = ensureFunction(object[key]);
|
||||
return functions;
|
||||
}, {});
|
||||
}
|
||||
|
||||
var objKeyRegEx =
|
||||
/^([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*)(\.([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*))+$/;
|
||||
function expandTypeofReplacements(replacements) {
|
||||
Object.keys(replacements).forEach(function (key) {
|
||||
var objMatch = key.match(objKeyRegEx);
|
||||
if (!objMatch) { return; }
|
||||
var dotIndex = objMatch[1].length;
|
||||
do {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
replacements[("typeof " + (key.slice(0, dotIndex)))] = '"object"';
|
||||
dotIndex = key.indexOf('.', dotIndex + 1);
|
||||
} while (dotIndex !== -1);
|
||||
});
|
||||
}
|
||||
|
||||
function replace(options) {
|
||||
if ( options === void 0 ) options = {};
|
||||
|
||||
var filter = createFilter(options.include, options.exclude);
|
||||
var delimiters = options.delimiters; if ( delimiters === void 0 ) delimiters = ['(?<![_$a-zA-Z0-9\\xA0-\\uFFFF])', '(?![_$a-zA-Z0-9\\xA0-\\uFFFF])(?!\\.)'];
|
||||
var preventAssignment = options.preventAssignment;
|
||||
var objectGuards = options.objectGuards;
|
||||
var replacements = getReplacements(options);
|
||||
if (objectGuards) { expandTypeofReplacements(replacements); }
|
||||
var functionValues = mapToFunctions(replacements);
|
||||
var keys = Object.keys(functionValues).sort(longest).map(escape);
|
||||
var lookbehind = preventAssignment ? '(?<!\\b(?:const|let|var)\\s*)' : '';
|
||||
var lookahead = preventAssignment ? '(?!\\s*=[^=])' : '';
|
||||
var pattern = new RegExp(
|
||||
("" + lookbehind + (delimiters[0]) + "(" + (keys.join('|')) + ")" + (delimiters[1]) + lookahead),
|
||||
'g'
|
||||
);
|
||||
|
||||
return {
|
||||
name: 'replace',
|
||||
|
||||
buildStart: function buildStart() {
|
||||
if (![true, false].includes(preventAssignment)) {
|
||||
this.warn({
|
||||
message:
|
||||
"@rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`."
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
renderChunk: function renderChunk(code, chunk) {
|
||||
var id = chunk.fileName;
|
||||
if (!keys.length) { return null; }
|
||||
if (!filter(id)) { return null; }
|
||||
return executeReplacement(code, id);
|
||||
},
|
||||
|
||||
transform: function transform(code, id) {
|
||||
if (!keys.length) { return null; }
|
||||
if (!filter(id)) { return null; }
|
||||
return executeReplacement(code, id);
|
||||
}
|
||||
};
|
||||
|
||||
function executeReplacement(code, id) {
|
||||
var magicString = new MagicString(code);
|
||||
if (!codeHasReplacements(code, id, magicString)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var result = { code: magicString.toString() };
|
||||
if (isSourceMapEnabled()) {
|
||||
result.map = magicString.generateMap({ hires: true });
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function codeHasReplacements(code, id, magicString) {
|
||||
var result = false;
|
||||
var match;
|
||||
|
||||
// eslint-disable-next-line no-cond-assign
|
||||
while ((match = pattern.exec(code))) {
|
||||
result = true;
|
||||
|
||||
var start = match.index;
|
||||
var end = start + match[0].length;
|
||||
var replacement = String(functionValues[match[1]](id));
|
||||
magicString.overwrite(start, end, replacement);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function isSourceMapEnabled() {
|
||||
return options.sourceMap !== false && options.sourcemap !== false;
|
||||
}
|
||||
}
|
||||
|
||||
export { replace as default };
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"name": "@rollup/plugin-replace",
|
||||
"version": "6.0.3",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"description": "Replace strings in files while bundling",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"url": "rollup/plugins",
|
||||
"directory": "packages/replace"
|
||||
},
|
||||
"author": "Rich Harris <richard.a.harris@gmail.com>",
|
||||
"homepage": "https://github.com/rollup/plugins/tree/master/packages/replace#readme",
|
||||
"bugs": "https://github.com/rollup/plugins/issues",
|
||||
"main": "dist/cjs/index.js",
|
||||
"module": "dist/es/index.js",
|
||||
"exports": {
|
||||
"types": "./types/index.d.ts",
|
||||
"import": "./dist/es/index.js",
|
||||
"default": "./dist/cjs/index.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/**/*.map",
|
||||
"src",
|
||||
"types",
|
||||
"README.md"
|
||||
],
|
||||
"keywords": [
|
||||
"rollup",
|
||||
"plugin",
|
||||
"replace",
|
||||
"es2015",
|
||||
"npm",
|
||||
"modules"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"rollup": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@rollup/pluginutils": "^5.0.1",
|
||||
"magic-string": "^0.30.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-buble": "^1.0.0",
|
||||
"del-cli": "^5.0.0",
|
||||
"locate-character": "^2.0.5",
|
||||
"rollup": "^4.0.0-24",
|
||||
"source-map": "^0.7.4",
|
||||
"typescript": "^4.8.3"
|
||||
},
|
||||
"types": "./types/index.d.ts",
|
||||
"ava": {
|
||||
"workerThreads": false,
|
||||
"files": [
|
||||
"!**/fixtures/**",
|
||||
"!**/helpers/**",
|
||||
"!**/recipes/**",
|
||||
"!**/types.ts"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
||||
"ci:lint": "pnpm build && pnpm lint",
|
||||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
||||
"ci:test": "pnpm test -- --verbose && pnpm test:ts",
|
||||
"prebuild": "del-cli dist",
|
||||
"prerelease": "pnpm build",
|
||||
"pretest": "pnpm build",
|
||||
"release": "pnpm --workspace-root package:release $(pwd)",
|
||||
"test": "ava",
|
||||
"test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
||||
}
|
||||
}
|
||||
+131
@@ -0,0 +1,131 @@
|
||||
import MagicString from 'magic-string';
|
||||
import { createFilter } from '@rollup/pluginutils';
|
||||
|
||||
function escape(str) {
|
||||
return str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&');
|
||||
}
|
||||
|
||||
function ensureFunction(functionOrValue) {
|
||||
if (typeof functionOrValue === 'function') return functionOrValue;
|
||||
return () => functionOrValue;
|
||||
}
|
||||
|
||||
function longest(a, b) {
|
||||
return b.length - a.length;
|
||||
}
|
||||
|
||||
function getReplacements(options) {
|
||||
if (options.values) {
|
||||
return Object.assign({}, options.values);
|
||||
}
|
||||
const values = Object.assign({}, options);
|
||||
delete values.delimiters;
|
||||
delete values.include;
|
||||
delete values.exclude;
|
||||
delete values.sourcemap;
|
||||
delete values.sourceMap;
|
||||
delete values.objectGuards;
|
||||
delete values.preventAssignment;
|
||||
return values;
|
||||
}
|
||||
|
||||
function mapToFunctions(object) {
|
||||
return Object.keys(object).reduce((fns, key) => {
|
||||
const functions = Object.assign({}, fns);
|
||||
functions[key] = ensureFunction(object[key]);
|
||||
return functions;
|
||||
}, {});
|
||||
}
|
||||
|
||||
const objKeyRegEx =
|
||||
/^([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*)(\.([_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*))+$/;
|
||||
function expandTypeofReplacements(replacements) {
|
||||
Object.keys(replacements).forEach((key) => {
|
||||
const objMatch = key.match(objKeyRegEx);
|
||||
if (!objMatch) return;
|
||||
let dotIndex = objMatch[1].length;
|
||||
do {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
replacements[`typeof ${key.slice(0, dotIndex)}`] = '"object"';
|
||||
dotIndex = key.indexOf('.', dotIndex + 1);
|
||||
} while (dotIndex !== -1);
|
||||
});
|
||||
}
|
||||
|
||||
export default function replace(options = {}) {
|
||||
const filter = createFilter(options.include, options.exclude);
|
||||
const {
|
||||
delimiters = ['(?<![_$a-zA-Z0-9\\xA0-\\uFFFF])', '(?![_$a-zA-Z0-9\\xA0-\\uFFFF])(?!\\.)'],
|
||||
preventAssignment,
|
||||
objectGuards
|
||||
} = options;
|
||||
const replacements = getReplacements(options);
|
||||
if (objectGuards) expandTypeofReplacements(replacements);
|
||||
const functionValues = mapToFunctions(replacements);
|
||||
const keys = Object.keys(functionValues).sort(longest).map(escape);
|
||||
const lookbehind = preventAssignment ? '(?<!\\b(?:const|let|var)\\s*)' : '';
|
||||
const lookahead = preventAssignment ? '(?!\\s*=[^=])' : '';
|
||||
const pattern = new RegExp(
|
||||
`${lookbehind}${delimiters[0]}(${keys.join('|')})${delimiters[1]}${lookahead}`,
|
||||
'g'
|
||||
);
|
||||
|
||||
return {
|
||||
name: 'replace',
|
||||
|
||||
buildStart() {
|
||||
if (![true, false].includes(preventAssignment)) {
|
||||
this.warn({
|
||||
message:
|
||||
"@rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`."
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
renderChunk(code, chunk) {
|
||||
const id = chunk.fileName;
|
||||
if (!keys.length) return null;
|
||||
if (!filter(id)) return null;
|
||||
return executeReplacement(code, id);
|
||||
},
|
||||
|
||||
transform(code, id) {
|
||||
if (!keys.length) return null;
|
||||
if (!filter(id)) return null;
|
||||
return executeReplacement(code, id);
|
||||
}
|
||||
};
|
||||
|
||||
function executeReplacement(code, id) {
|
||||
const magicString = new MagicString(code);
|
||||
if (!codeHasReplacements(code, id, magicString)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const result = { code: magicString.toString() };
|
||||
if (isSourceMapEnabled()) {
|
||||
result.map = magicString.generateMap({ hires: true });
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function codeHasReplacements(code, id, magicString) {
|
||||
let result = false;
|
||||
let match;
|
||||
|
||||
// eslint-disable-next-line no-cond-assign
|
||||
while ((match = pattern.exec(code))) {
|
||||
result = true;
|
||||
|
||||
const start = match.index;
|
||||
const end = start + match[0].length;
|
||||
const replacement = String(functionValues[match[1]](id));
|
||||
magicString.overwrite(start, end, replacement);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
function isSourceMapEnabled() {
|
||||
return options.sourceMap !== false && options.sourcemap !== false;
|
||||
}
|
||||
}
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
import type { FilterPattern } from '@rollup/pluginutils';
|
||||
import type { Plugin } from 'rollup';
|
||||
|
||||
type Replacement = string | ((id: string) => string);
|
||||
|
||||
export interface RollupReplaceOptions {
|
||||
/**
|
||||
* All other options are treated as `string: replacement` replacers,
|
||||
* or `string: (id) => replacement` functions.
|
||||
*/
|
||||
[str: string]:
|
||||
| Replacement
|
||||
| RollupReplaceOptions['include']
|
||||
| RollupReplaceOptions['values']
|
||||
| RollupReplaceOptions['objectGuards']
|
||||
| RollupReplaceOptions['preventAssignment'];
|
||||
|
||||
/**
|
||||
* A picomatch pattern, or array of patterns, of files that should be
|
||||
* processed by this plugin (if omitted, all files are included by default)
|
||||
*/
|
||||
include?: FilterPattern;
|
||||
/**
|
||||
* Files that should be excluded, if `include` is otherwise too permissive.
|
||||
*/
|
||||
exclude?: FilterPattern;
|
||||
/**
|
||||
* If false, skips source map generation. This will improve performance.
|
||||
* @default true
|
||||
*/
|
||||
sourceMap?: boolean;
|
||||
/**
|
||||
* To replace every occurrence of `<@foo@>` instead of every occurrence
|
||||
* of `foo`, supply delimiters
|
||||
*/
|
||||
delimiters?: [string, string];
|
||||
/**
|
||||
* When replacing dot-separated object properties like `process.env.NODE_ENV`,
|
||||
* will also replace `typeof process` object guard checks against the objects
|
||||
* with the string `"object"`.
|
||||
*/
|
||||
objectGuards?: boolean;
|
||||
/**
|
||||
* Prevents replacing strings where they are followed by a single equals
|
||||
* sign.
|
||||
*/
|
||||
preventAssignment?: boolean;
|
||||
/**
|
||||
* You can separate values to replace from other options.
|
||||
*/
|
||||
values?: { [str: string]: Replacement };
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace strings in files while bundling them.
|
||||
*/
|
||||
export default function replace(options?: RollupReplaceOptions): Plugin;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+80
@@ -0,0 +1,80 @@
|
||||
[npm]: https://img.shields.io/npm/v/@rollup/plugin-terser
|
||||
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-terser
|
||||
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-terser
|
||||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-terser
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![size][size]][size-url]
|
||||
[](https://liberamanifesto.com)
|
||||
|
||||
# @rollup/plugin-terser
|
||||
|
||||
🍣 A Rollup plugin to generate a minified bundle with terser.
|
||||
|
||||
## Requirements
|
||||
|
||||
This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v2.0+.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```console
|
||||
npm install @rollup/plugin-terser --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Create a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:
|
||||
|
||||
```typescript
|
||||
import terser from '@rollup/plugin-terser';
|
||||
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
dir: 'output',
|
||||
format: 'cjs'
|
||||
},
|
||||
plugins: [terser()]
|
||||
};
|
||||
```
|
||||
|
||||
Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).
|
||||
|
||||
## Options
|
||||
|
||||
The plugin accepts a terser [Options](https://github.com/terser/terser#minify-options) object as input parameter,
|
||||
to modify the default behaviour.
|
||||
|
||||
In addition to the `terser` options, it is also possible to provide the following options:
|
||||
|
||||
### `maxWorkers`
|
||||
|
||||
Type: `Number`<br>
|
||||
Default: `undefined`
|
||||
|
||||
Instructs the plugin to use a specific amount of cpu threads.
|
||||
|
||||
```typescript
|
||||
import terser from '@rollup/plugin-terser';
|
||||
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
dir: 'output',
|
||||
format: 'cjs'
|
||||
},
|
||||
plugins: [
|
||||
terser({
|
||||
maxWorkers: 4
|
||||
})
|
||||
]
|
||||
};
|
||||
```
|
||||
|
||||
## Meta
|
||||
|
||||
[CONTRIBUTING](/.github/CONTRIBUTING.md)
|
||||
|
||||
[LICENSE (MIT)](/LICENSE)
|
||||
+232
@@ -0,0 +1,232 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var worker_threads = require('worker_threads');
|
||||
var smob = require('smob');
|
||||
var terser$1 = require('terser');
|
||||
var url = require('url');
|
||||
var async_hooks = require('async_hooks');
|
||||
var os = require('os');
|
||||
var events = require('events');
|
||||
var serializeJavascript = require('serialize-javascript');
|
||||
|
||||
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
||||
const taskInfo = Symbol('taskInfo');
|
||||
const freeWorker = Symbol('freeWorker');
|
||||
const workerPoolWorkerFlag = 'WorkerPoolWorker';
|
||||
|
||||
/**
|
||||
* Duck typing worker context.
|
||||
*
|
||||
* @param input
|
||||
*/
|
||||
function isWorkerContextSerialized(input) {
|
||||
return (smob.isObject(input) &&
|
||||
smob.hasOwnProperty(input, 'code') &&
|
||||
typeof input.code === 'string' &&
|
||||
smob.hasOwnProperty(input, 'options') &&
|
||||
typeof input.options === 'string');
|
||||
}
|
||||
function runWorker() {
|
||||
if (worker_threads.isMainThread || !worker_threads.parentPort || worker_threads.workerData !== workerPoolWorkerFlag) {
|
||||
return;
|
||||
}
|
||||
// eslint-disable-next-line no-eval
|
||||
const eval2 = eval;
|
||||
worker_threads.parentPort.on('message', async (data) => {
|
||||
if (!isWorkerContextSerialized(data)) {
|
||||
return;
|
||||
}
|
||||
const options = eval2(`(${data.options})`);
|
||||
const result = await terser$1.minify(data.code, options);
|
||||
const output = {
|
||||
code: result.code || data.code,
|
||||
nameCache: options.nameCache
|
||||
};
|
||||
if (typeof result.map === 'string') {
|
||||
output.sourceMap = JSON.parse(result.map);
|
||||
}
|
||||
if (smob.isObject(result.map)) {
|
||||
output.sourceMap = result.map;
|
||||
}
|
||||
worker_threads.parentPort === null || worker_threads.parentPort === void 0 ? void 0 : worker_threads.parentPort.postMessage(output);
|
||||
});
|
||||
}
|
||||
|
||||
class WorkerPoolTaskInfo extends async_hooks.AsyncResource {
|
||||
constructor(callback) {
|
||||
super('WorkerPoolTaskInfo');
|
||||
this.callback = callback;
|
||||
}
|
||||
done(err, result) {
|
||||
this.runInAsyncScope(this.callback, null, err, result);
|
||||
this.emitDestroy();
|
||||
}
|
||||
}
|
||||
class WorkerPool extends events.EventEmitter {
|
||||
constructor(options) {
|
||||
super();
|
||||
this.tasks = [];
|
||||
this.workers = [];
|
||||
this.freeWorkers = [];
|
||||
this.maxInstances = options.maxWorkers || os.cpus().length;
|
||||
this.filePath = options.filePath;
|
||||
this.on(freeWorker, () => {
|
||||
if (this.tasks.length > 0) {
|
||||
const { context, cb } = this.tasks.shift();
|
||||
this.runTask(context, cb);
|
||||
}
|
||||
});
|
||||
}
|
||||
get numWorkers() {
|
||||
return this.workers.length;
|
||||
}
|
||||
addAsync(context) {
|
||||
return new Promise((resolve, reject) => {
|
||||
this.runTask(context, (err, output) => {
|
||||
if (err) {
|
||||
reject(err);
|
||||
return;
|
||||
}
|
||||
if (!output) {
|
||||
reject(new Error('The output is empty'));
|
||||
return;
|
||||
}
|
||||
resolve(output);
|
||||
});
|
||||
});
|
||||
}
|
||||
close() {
|
||||
for (let i = 0; i < this.workers.length; i++) {
|
||||
const worker = this.workers[i];
|
||||
worker.terminate();
|
||||
}
|
||||
}
|
||||
addNewWorker() {
|
||||
const worker = new worker_threads.Worker(this.filePath, {
|
||||
workerData: workerPoolWorkerFlag
|
||||
});
|
||||
worker.on('message', (result) => {
|
||||
var _a;
|
||||
(_a = worker[taskInfo]) === null || _a === void 0 ? void 0 : _a.done(null, result);
|
||||
worker[taskInfo] = null;
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
});
|
||||
worker.on('error', (err) => {
|
||||
if (worker[taskInfo]) {
|
||||
worker[taskInfo].done(err, null);
|
||||
}
|
||||
else {
|
||||
this.emit('error', err);
|
||||
}
|
||||
this.workers.splice(this.workers.indexOf(worker), 1);
|
||||
this.addNewWorker();
|
||||
});
|
||||
this.workers.push(worker);
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
}
|
||||
runTask(context, cb) {
|
||||
if (this.freeWorkers.length === 0) {
|
||||
this.tasks.push({ context, cb });
|
||||
if (this.numWorkers < this.maxInstances) {
|
||||
this.addNewWorker();
|
||||
}
|
||||
return;
|
||||
}
|
||||
const worker = this.freeWorkers.pop();
|
||||
if (worker) {
|
||||
worker[taskInfo] = new WorkerPoolTaskInfo(cb);
|
||||
worker.postMessage({
|
||||
code: context.code,
|
||||
options: serializeJavascript(context.options)
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function terser(input = {}) {
|
||||
const { maxWorkers, ...options } = input;
|
||||
let workerPool;
|
||||
let numOfChunks = 0;
|
||||
let numOfWorkersUsed = 0;
|
||||
return {
|
||||
name: 'terser',
|
||||
async renderChunk(code, chunk, outputOptions) {
|
||||
if (!workerPool) {
|
||||
workerPool = new WorkerPool({
|
||||
filePath: url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index.js', document.baseURI).href))),
|
||||
maxWorkers
|
||||
});
|
||||
}
|
||||
numOfChunks += 1;
|
||||
const defaultOptions = {
|
||||
sourceMap: outputOptions.sourcemap === true || typeof outputOptions.sourcemap === 'string'
|
||||
};
|
||||
if (outputOptions.format === 'es') {
|
||||
defaultOptions.module = true;
|
||||
}
|
||||
if (outputOptions.format === 'cjs') {
|
||||
defaultOptions.toplevel = true;
|
||||
}
|
||||
try {
|
||||
const { code: result, nameCache, sourceMap } = await workerPool.addAsync({
|
||||
code,
|
||||
options: smob.merge({}, options || {}, defaultOptions)
|
||||
});
|
||||
if (options.nameCache && nameCache) {
|
||||
let vars = {
|
||||
props: {}
|
||||
};
|
||||
if (smob.hasOwnProperty(options.nameCache, 'vars') && smob.isObject(options.nameCache.vars)) {
|
||||
vars = smob.merge({}, options.nameCache.vars || {}, vars);
|
||||
}
|
||||
if (smob.hasOwnProperty(nameCache, 'vars') && smob.isObject(nameCache.vars)) {
|
||||
vars = smob.merge({}, nameCache.vars, vars);
|
||||
}
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.vars = vars;
|
||||
let props = {};
|
||||
if (smob.hasOwnProperty(options.nameCache, 'props') && smob.isObject(options.nameCache.props)) {
|
||||
// eslint-disable-next-line prefer-destructuring
|
||||
props = options.nameCache.props;
|
||||
}
|
||||
if (smob.hasOwnProperty(nameCache, 'props') && smob.isObject(nameCache.props)) {
|
||||
props = smob.merge({}, nameCache.props, props);
|
||||
}
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.props = props;
|
||||
}
|
||||
if ((!!defaultOptions.sourceMap || !!options.sourceMap) && smob.isObject(sourceMap)) {
|
||||
return {
|
||||
code: result,
|
||||
map: sourceMap
|
||||
};
|
||||
}
|
||||
return result;
|
||||
}
|
||||
catch (e) {
|
||||
return Promise.reject(e);
|
||||
}
|
||||
finally {
|
||||
numOfChunks -= 1;
|
||||
if (numOfChunks === 0) {
|
||||
numOfWorkersUsed = workerPool.numWorkers;
|
||||
workerPool.close();
|
||||
workerPool = null;
|
||||
}
|
||||
}
|
||||
},
|
||||
get numOfWorkersUsed() {
|
||||
return numOfWorkersUsed;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
runWorker();
|
||||
|
||||
exports.default = terser;
|
||||
module.exports = Object.assign(exports.default, exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
+226
@@ -0,0 +1,226 @@
|
||||
import { isMainThread, parentPort, workerData, Worker } from 'worker_threads';
|
||||
import { isObject, hasOwnProperty, merge } from 'smob';
|
||||
import { minify } from 'terser';
|
||||
import { fileURLToPath } from 'url';
|
||||
import { AsyncResource } from 'async_hooks';
|
||||
import { cpus } from 'os';
|
||||
import { EventEmitter } from 'events';
|
||||
import serializeJavascript from 'serialize-javascript';
|
||||
|
||||
const taskInfo = Symbol('taskInfo');
|
||||
const freeWorker = Symbol('freeWorker');
|
||||
const workerPoolWorkerFlag = 'WorkerPoolWorker';
|
||||
|
||||
/**
|
||||
* Duck typing worker context.
|
||||
*
|
||||
* @param input
|
||||
*/
|
||||
function isWorkerContextSerialized(input) {
|
||||
return (isObject(input) &&
|
||||
hasOwnProperty(input, 'code') &&
|
||||
typeof input.code === 'string' &&
|
||||
hasOwnProperty(input, 'options') &&
|
||||
typeof input.options === 'string');
|
||||
}
|
||||
function runWorker() {
|
||||
if (isMainThread || !parentPort || workerData !== workerPoolWorkerFlag) {
|
||||
return;
|
||||
}
|
||||
// eslint-disable-next-line no-eval
|
||||
const eval2 = eval;
|
||||
parentPort.on('message', async (data) => {
|
||||
if (!isWorkerContextSerialized(data)) {
|
||||
return;
|
||||
}
|
||||
const options = eval2(`(${data.options})`);
|
||||
const result = await minify(data.code, options);
|
||||
const output = {
|
||||
code: result.code || data.code,
|
||||
nameCache: options.nameCache
|
||||
};
|
||||
if (typeof result.map === 'string') {
|
||||
output.sourceMap = JSON.parse(result.map);
|
||||
}
|
||||
if (isObject(result.map)) {
|
||||
output.sourceMap = result.map;
|
||||
}
|
||||
parentPort === null || parentPort === void 0 ? void 0 : parentPort.postMessage(output);
|
||||
});
|
||||
}
|
||||
|
||||
class WorkerPoolTaskInfo extends AsyncResource {
|
||||
constructor(callback) {
|
||||
super('WorkerPoolTaskInfo');
|
||||
this.callback = callback;
|
||||
}
|
||||
done(err, result) {
|
||||
this.runInAsyncScope(this.callback, null, err, result);
|
||||
this.emitDestroy();
|
||||
}
|
||||
}
|
||||
class WorkerPool extends EventEmitter {
|
||||
constructor(options) {
|
||||
super();
|
||||
this.tasks = [];
|
||||
this.workers = [];
|
||||
this.freeWorkers = [];
|
||||
this.maxInstances = options.maxWorkers || cpus().length;
|
||||
this.filePath = options.filePath;
|
||||
this.on(freeWorker, () => {
|
||||
if (this.tasks.length > 0) {
|
||||
const { context, cb } = this.tasks.shift();
|
||||
this.runTask(context, cb);
|
||||
}
|
||||
});
|
||||
}
|
||||
get numWorkers() {
|
||||
return this.workers.length;
|
||||
}
|
||||
addAsync(context) {
|
||||
return new Promise((resolve, reject) => {
|
||||
this.runTask(context, (err, output) => {
|
||||
if (err) {
|
||||
reject(err);
|
||||
return;
|
||||
}
|
||||
if (!output) {
|
||||
reject(new Error('The output is empty'));
|
||||
return;
|
||||
}
|
||||
resolve(output);
|
||||
});
|
||||
});
|
||||
}
|
||||
close() {
|
||||
for (let i = 0; i < this.workers.length; i++) {
|
||||
const worker = this.workers[i];
|
||||
worker.terminate();
|
||||
}
|
||||
}
|
||||
addNewWorker() {
|
||||
const worker = new Worker(this.filePath, {
|
||||
workerData: workerPoolWorkerFlag
|
||||
});
|
||||
worker.on('message', (result) => {
|
||||
var _a;
|
||||
(_a = worker[taskInfo]) === null || _a === void 0 ? void 0 : _a.done(null, result);
|
||||
worker[taskInfo] = null;
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
});
|
||||
worker.on('error', (err) => {
|
||||
if (worker[taskInfo]) {
|
||||
worker[taskInfo].done(err, null);
|
||||
}
|
||||
else {
|
||||
this.emit('error', err);
|
||||
}
|
||||
this.workers.splice(this.workers.indexOf(worker), 1);
|
||||
this.addNewWorker();
|
||||
});
|
||||
this.workers.push(worker);
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
}
|
||||
runTask(context, cb) {
|
||||
if (this.freeWorkers.length === 0) {
|
||||
this.tasks.push({ context, cb });
|
||||
if (this.numWorkers < this.maxInstances) {
|
||||
this.addNewWorker();
|
||||
}
|
||||
return;
|
||||
}
|
||||
const worker = this.freeWorkers.pop();
|
||||
if (worker) {
|
||||
worker[taskInfo] = new WorkerPoolTaskInfo(cb);
|
||||
worker.postMessage({
|
||||
code: context.code,
|
||||
options: serializeJavascript(context.options)
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function terser(input = {}) {
|
||||
const { maxWorkers, ...options } = input;
|
||||
let workerPool;
|
||||
let numOfChunks = 0;
|
||||
let numOfWorkersUsed = 0;
|
||||
return {
|
||||
name: 'terser',
|
||||
async renderChunk(code, chunk, outputOptions) {
|
||||
if (!workerPool) {
|
||||
workerPool = new WorkerPool({
|
||||
filePath: fileURLToPath(import.meta.url),
|
||||
maxWorkers
|
||||
});
|
||||
}
|
||||
numOfChunks += 1;
|
||||
const defaultOptions = {
|
||||
sourceMap: outputOptions.sourcemap === true || typeof outputOptions.sourcemap === 'string'
|
||||
};
|
||||
if (outputOptions.format === 'es') {
|
||||
defaultOptions.module = true;
|
||||
}
|
||||
if (outputOptions.format === 'cjs') {
|
||||
defaultOptions.toplevel = true;
|
||||
}
|
||||
try {
|
||||
const { code: result, nameCache, sourceMap } = await workerPool.addAsync({
|
||||
code,
|
||||
options: merge({}, options || {}, defaultOptions)
|
||||
});
|
||||
if (options.nameCache && nameCache) {
|
||||
let vars = {
|
||||
props: {}
|
||||
};
|
||||
if (hasOwnProperty(options.nameCache, 'vars') && isObject(options.nameCache.vars)) {
|
||||
vars = merge({}, options.nameCache.vars || {}, vars);
|
||||
}
|
||||
if (hasOwnProperty(nameCache, 'vars') && isObject(nameCache.vars)) {
|
||||
vars = merge({}, nameCache.vars, vars);
|
||||
}
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.vars = vars;
|
||||
let props = {};
|
||||
if (hasOwnProperty(options.nameCache, 'props') && isObject(options.nameCache.props)) {
|
||||
// eslint-disable-next-line prefer-destructuring
|
||||
props = options.nameCache.props;
|
||||
}
|
||||
if (hasOwnProperty(nameCache, 'props') && isObject(nameCache.props)) {
|
||||
props = merge({}, nameCache.props, props);
|
||||
}
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.props = props;
|
||||
}
|
||||
if ((!!defaultOptions.sourceMap || !!options.sourceMap) && isObject(sourceMap)) {
|
||||
return {
|
||||
code: result,
|
||||
map: sourceMap
|
||||
};
|
||||
}
|
||||
return result;
|
||||
}
|
||||
catch (e) {
|
||||
return Promise.reject(e);
|
||||
}
|
||||
finally {
|
||||
numOfChunks -= 1;
|
||||
if (numOfChunks === 0) {
|
||||
numOfWorkersUsed = workerPool.numWorkers;
|
||||
workerPool.close();
|
||||
workerPool = null;
|
||||
}
|
||||
}
|
||||
},
|
||||
get numOfWorkersUsed() {
|
||||
return numOfWorkersUsed;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
runWorker();
|
||||
|
||||
export { terser as default };
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"name": "@rollup/plugin-terser",
|
||||
"version": "1.0.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"description": "Generate minified bundle",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"url": "rollup/plugins",
|
||||
"directory": "packages/terser"
|
||||
},
|
||||
"author": "Peter Placzek <peter.placzek1996@gmail.com>",
|
||||
"homepage": "https://github.com/rollup/plugins/tree/master/packages/terser#readme",
|
||||
"bugs": "https://github.com/rollup/plugins/issues",
|
||||
"main": "dist/cjs/index.js",
|
||||
"module": "dist/es/index.js",
|
||||
"exports": {
|
||||
"types": "./types/index.d.ts",
|
||||
"import": "./dist/es/index.js",
|
||||
"default": "./dist/cjs/index.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/**/*.map",
|
||||
"src",
|
||||
"types",
|
||||
"README.md"
|
||||
],
|
||||
"keywords": [
|
||||
"rollup",
|
||||
"plugin",
|
||||
"terser",
|
||||
"minify",
|
||||
"npm",
|
||||
"modules"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"rollup": "^2.0.0||^3.0.0||^4.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"rollup": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"serialize-javascript": "^7.0.3",
|
||||
"smob": "^1.0.0",
|
||||
"terser": "^5.17.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/serialize-javascript": "^5.0.4",
|
||||
"rollup": "^4.0.0-24",
|
||||
"typescript": "^4.8.3"
|
||||
},
|
||||
"types": "./types/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
||||
"ci:lint": "pnpm build && pnpm lint",
|
||||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
||||
"ci:test": "pnpm test -- --verbose && pnpm test:ts",
|
||||
"prebuild": "del-cli dist",
|
||||
"prerelease": "pnpm build",
|
||||
"pretest": "pnpm build",
|
||||
"release": "pnpm --workspace-root package:release $(pwd)",
|
||||
"test": "ava",
|
||||
"test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export const taskInfo = Symbol('taskInfo');
|
||||
export const freeWorker = Symbol('freeWorker');
|
||||
export const workerPoolWorkerFlag = 'WorkerPoolWorker';
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import { runWorker } from './worker';
|
||||
import terser from './module';
|
||||
|
||||
runWorker();
|
||||
|
||||
export * from './type';
|
||||
|
||||
export default terser;
|
||||
+105
@@ -0,0 +1,105 @@
|
||||
import { fileURLToPath } from 'url';
|
||||
|
||||
import type { NormalizedOutputOptions, RenderedChunk } from 'rollup';
|
||||
import { hasOwnProperty, isObject, merge } from 'smob';
|
||||
|
||||
import type { Options } from './type';
|
||||
import { WorkerPool } from './worker-pool';
|
||||
|
||||
export default function terser(input: Options = {}) {
|
||||
const { maxWorkers, ...options } = input;
|
||||
|
||||
let workerPool: WorkerPool | null | undefined;
|
||||
let numOfChunks = 0;
|
||||
let numOfWorkersUsed = 0;
|
||||
|
||||
return {
|
||||
name: 'terser',
|
||||
|
||||
async renderChunk(code: string, chunk: RenderedChunk, outputOptions: NormalizedOutputOptions) {
|
||||
if (!workerPool) {
|
||||
workerPool = new WorkerPool({
|
||||
filePath: fileURLToPath(import.meta.url),
|
||||
maxWorkers
|
||||
});
|
||||
}
|
||||
|
||||
numOfChunks += 1;
|
||||
|
||||
const defaultOptions: Options = {
|
||||
sourceMap: outputOptions.sourcemap === true || typeof outputOptions.sourcemap === 'string'
|
||||
};
|
||||
|
||||
if (outputOptions.format === 'es') {
|
||||
defaultOptions.module = true;
|
||||
}
|
||||
|
||||
if (outputOptions.format === 'cjs') {
|
||||
defaultOptions.toplevel = true;
|
||||
}
|
||||
|
||||
try {
|
||||
const {
|
||||
code: result,
|
||||
nameCache,
|
||||
sourceMap
|
||||
} = await workerPool.addAsync({
|
||||
code,
|
||||
options: merge({}, options || {}, defaultOptions)
|
||||
});
|
||||
|
||||
if (options.nameCache && nameCache) {
|
||||
let vars: Record<string, any> = {
|
||||
props: {}
|
||||
};
|
||||
|
||||
if (hasOwnProperty(options.nameCache, 'vars') && isObject(options.nameCache.vars)) {
|
||||
vars = merge({}, options.nameCache.vars || {}, vars);
|
||||
}
|
||||
|
||||
if (hasOwnProperty(nameCache, 'vars') && isObject(nameCache.vars)) {
|
||||
vars = merge({}, nameCache.vars, vars);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.vars = vars;
|
||||
|
||||
let props: Record<string, any> = {};
|
||||
|
||||
if (hasOwnProperty(options.nameCache, 'props') && isObject(options.nameCache.props)) {
|
||||
// eslint-disable-next-line prefer-destructuring
|
||||
props = options.nameCache.props;
|
||||
}
|
||||
|
||||
if (hasOwnProperty(nameCache, 'props') && isObject(nameCache.props)) {
|
||||
props = merge({}, nameCache.props, props);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
options.nameCache.props = props;
|
||||
}
|
||||
|
||||
if ((!!defaultOptions.sourceMap || !!options.sourceMap) && isObject(sourceMap)) {
|
||||
return {
|
||||
code: result,
|
||||
map: sourceMap
|
||||
};
|
||||
}
|
||||
return result;
|
||||
} catch (e) {
|
||||
return Promise.reject(e);
|
||||
} finally {
|
||||
numOfChunks -= 1;
|
||||
if (numOfChunks === 0) {
|
||||
numOfWorkersUsed = workerPool.numWorkers;
|
||||
workerPool.close();
|
||||
workerPool = null;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
get numOfWorkersUsed() {
|
||||
return numOfWorkersUsed;
|
||||
}
|
||||
};
|
||||
}
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
import type { AsyncResource } from 'async_hooks';
|
||||
import type { Worker } from 'worker_threads';
|
||||
|
||||
import type { MinifyOptions } from 'terser';
|
||||
|
||||
import type { taskInfo } from './constants';
|
||||
|
||||
export interface Options extends MinifyOptions {
|
||||
nameCache?: Record<string, any>;
|
||||
maxWorkers?: number;
|
||||
}
|
||||
|
||||
export interface WorkerContext {
|
||||
code: string;
|
||||
options: Options;
|
||||
}
|
||||
|
||||
export type WorkerCallback = (err: Error | null, output?: WorkerOutput) => void;
|
||||
|
||||
interface WorkerPoolTaskInfo extends AsyncResource {
|
||||
done(err: Error | null, result: any): void;
|
||||
}
|
||||
|
||||
export type WorkerWithTaskInfo = Worker & { [taskInfo]?: WorkerPoolTaskInfo | null };
|
||||
|
||||
export interface WorkerContextSerialized {
|
||||
code: string;
|
||||
options: string;
|
||||
}
|
||||
|
||||
export interface WorkerOutput {
|
||||
code: string;
|
||||
nameCache?: Options['nameCache'];
|
||||
sourceMap?: Record<string, any>;
|
||||
}
|
||||
|
||||
export interface WorkerPoolOptions {
|
||||
filePath: string;
|
||||
maxWorkers?: number;
|
||||
}
|
||||
|
||||
export interface WorkerPoolTask {
|
||||
context: WorkerContext;
|
||||
cb: WorkerCallback;
|
||||
}
|
||||
+128
@@ -0,0 +1,128 @@
|
||||
import { AsyncResource } from 'async_hooks';
|
||||
import { Worker } from 'worker_threads';
|
||||
import { cpus } from 'os';
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
import serializeJavascript from 'serialize-javascript';
|
||||
|
||||
import { freeWorker, taskInfo, workerPoolWorkerFlag } from './constants';
|
||||
|
||||
import type {
|
||||
WorkerCallback,
|
||||
WorkerContext,
|
||||
WorkerOutput,
|
||||
WorkerPoolOptions,
|
||||
WorkerPoolTask,
|
||||
WorkerWithTaskInfo
|
||||
} from './type';
|
||||
|
||||
class WorkerPoolTaskInfo extends AsyncResource {
|
||||
constructor(private callback: WorkerCallback) {
|
||||
super('WorkerPoolTaskInfo');
|
||||
}
|
||||
|
||||
done(err: Error | null, result: any) {
|
||||
this.runInAsyncScope(this.callback, null, err, result);
|
||||
this.emitDestroy();
|
||||
}
|
||||
}
|
||||
|
||||
export class WorkerPool extends EventEmitter {
|
||||
protected maxInstances: number;
|
||||
|
||||
protected filePath: string;
|
||||
|
||||
protected tasks: WorkerPoolTask[] = [];
|
||||
|
||||
protected workers: WorkerWithTaskInfo[] = [];
|
||||
protected freeWorkers: WorkerWithTaskInfo[] = [];
|
||||
|
||||
constructor(options: WorkerPoolOptions) {
|
||||
super();
|
||||
|
||||
this.maxInstances = options.maxWorkers || cpus().length;
|
||||
this.filePath = options.filePath;
|
||||
|
||||
this.on(freeWorker, () => {
|
||||
if (this.tasks.length > 0) {
|
||||
const { context, cb } = this.tasks.shift()!;
|
||||
this.runTask(context, cb);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
get numWorkers(): number {
|
||||
return this.workers.length;
|
||||
}
|
||||
|
||||
addAsync(context: WorkerContext): Promise<WorkerOutput> {
|
||||
return new Promise((resolve, reject) => {
|
||||
this.runTask(context, (err, output) => {
|
||||
if (err) {
|
||||
reject(err);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!output) {
|
||||
reject(new Error('The output is empty'));
|
||||
return;
|
||||
}
|
||||
|
||||
resolve(output);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
close() {
|
||||
for (let i = 0; i < this.workers.length; i++) {
|
||||
const worker = this.workers[i];
|
||||
worker.terminate();
|
||||
}
|
||||
}
|
||||
|
||||
private addNewWorker() {
|
||||
const worker: WorkerWithTaskInfo = new Worker(this.filePath, {
|
||||
workerData: workerPoolWorkerFlag
|
||||
});
|
||||
|
||||
worker.on('message', (result) => {
|
||||
worker[taskInfo]?.done(null, result);
|
||||
worker[taskInfo] = null;
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
});
|
||||
|
||||
worker.on('error', (err) => {
|
||||
if (worker[taskInfo]) {
|
||||
worker[taskInfo].done(err, null);
|
||||
} else {
|
||||
this.emit('error', err);
|
||||
}
|
||||
this.workers.splice(this.workers.indexOf(worker), 1);
|
||||
this.addNewWorker();
|
||||
});
|
||||
|
||||
this.workers.push(worker);
|
||||
this.freeWorkers.push(worker);
|
||||
this.emit(freeWorker);
|
||||
}
|
||||
|
||||
private runTask(context: WorkerContext, cb: WorkerCallback) {
|
||||
if (this.freeWorkers.length === 0) {
|
||||
this.tasks.push({ context, cb });
|
||||
if (this.numWorkers < this.maxInstances) {
|
||||
this.addNewWorker();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
const worker = this.freeWorkers.pop();
|
||||
if (worker) {
|
||||
worker[taskInfo] = new WorkerPoolTaskInfo(cb);
|
||||
worker.postMessage({
|
||||
code: context.code,
|
||||
options: serializeJavascript(context.options)
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
import { isMainThread, parentPort, workerData } from 'worker_threads';
|
||||
|
||||
import { hasOwnProperty, isObject } from 'smob';
|
||||
|
||||
import { minify } from 'terser';
|
||||
|
||||
import { workerPoolWorkerFlag } from './constants';
|
||||
|
||||
import type { WorkerContextSerialized, WorkerOutput } from './type';
|
||||
|
||||
/**
|
||||
* Duck typing worker context.
|
||||
*
|
||||
* @param input
|
||||
*/
|
||||
function isWorkerContextSerialized(input: unknown): input is WorkerContextSerialized {
|
||||
return (
|
||||
isObject(input) &&
|
||||
hasOwnProperty(input, 'code') &&
|
||||
typeof input.code === 'string' &&
|
||||
hasOwnProperty(input, 'options') &&
|
||||
typeof input.options === 'string'
|
||||
);
|
||||
}
|
||||
|
||||
export function runWorker() {
|
||||
if (isMainThread || !parentPort || workerData !== workerPoolWorkerFlag) {
|
||||
return;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-eval
|
||||
const eval2 = eval;
|
||||
|
||||
parentPort.on('message', async (data: WorkerContextSerialized) => {
|
||||
if (!isWorkerContextSerialized(data)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const options = eval2(`(${data.options})`);
|
||||
|
||||
const result = await minify(data.code, options);
|
||||
|
||||
const output: WorkerOutput = {
|
||||
code: result.code || data.code,
|
||||
nameCache: options.nameCache
|
||||
};
|
||||
|
||||
if (typeof result.map === 'string') {
|
||||
output.sourceMap = JSON.parse(result.map);
|
||||
}
|
||||
|
||||
if (isObject(result.map)) {
|
||||
output.sourceMap = result.map;
|
||||
}
|
||||
|
||||
parentPort?.postMessage(output);
|
||||
});
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import type { Plugin } from 'rollup';
|
||||
import type { MinifyOptions } from 'terser';
|
||||
|
||||
export interface Options extends MinifyOptions {
|
||||
nameCache?: Record<string, any>;
|
||||
maxWorkers?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* A Rollup plugin to generate a minified output bundle.
|
||||
*
|
||||
* @param options - Plugin options.
|
||||
* @returns Plugin instance.
|
||||
*/
|
||||
export default function terser(options?: Options): Plugin;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+313
@@ -0,0 +1,313 @@
|
||||
[npm]: https://img.shields.io/npm/v/@rollup/pluginutils
|
||||
[npm-url]: https://www.npmjs.com/package/@rollup/pluginutils
|
||||
[size]: https://packagephobia.now.sh/badge?p=@rollup/pluginutils
|
||||
[size-url]: https://packagephobia.now.sh/result?p=@rollup/pluginutils
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![size][size]][size-url]
|
||||
[](https://liberamanifesto.com)
|
||||
|
||||
# @rollup/pluginutils
|
||||
|
||||
A set of utility functions commonly used by 🍣 Rollup plugins.
|
||||
|
||||
## Requirements
|
||||
|
||||
The plugin utils require an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v1.20.0+.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```console
|
||||
npm install @rollup/pluginutils --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import utils from '@rollup/pluginutils';
|
||||
//...
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
Available utility functions are listed below:
|
||||
|
||||
_Note: Parameter names immediately followed by a `?` indicate that the parameter is optional._
|
||||
|
||||
### addExtension
|
||||
|
||||
Adds an extension to a module ID if one does not exist.
|
||||
|
||||
Parameters: `(filename: String, ext?: String)`<br>
|
||||
Returns: `String`
|
||||
|
||||
```js
|
||||
import { addExtension } from '@rollup/pluginutils';
|
||||
|
||||
export default function myPlugin(options = {}) {
|
||||
return {
|
||||
resolveId(code, id) {
|
||||
// only adds an extension if there isn't one already
|
||||
id = addExtension(id); // `foo` -> `foo.js`, `foo.js` -> `foo.js`
|
||||
id = addExtension(id, '.myext'); // `foo` -> `foo.myext`, `foo.js` -> `foo.js`
|
||||
}
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
### attachScopes
|
||||
|
||||
Attaches `Scope` objects to the relevant nodes of an AST. Each `Scope` object has a `scope.contains(name)` method that returns `true` if a given name is defined in the current scope or a parent scope.
|
||||
|
||||
Parameters: `(ast: Node, propertyName?: String)`<br>
|
||||
Returns: `Object`
|
||||
|
||||
See [@rollup/plugin-inject](https://github.com/rollup/plugins/tree/master/packages/inject) or [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/master/packages/commonjs) for an example of usage.
|
||||
|
||||
```js
|
||||
import { attachScopes } from '@rollup/pluginutils';
|
||||
import { walk } from 'estree-walker';
|
||||
|
||||
export default function myPlugin(options = {}) {
|
||||
return {
|
||||
transform(code) {
|
||||
const ast = this.parse(code);
|
||||
|
||||
let scope = attachScopes(ast, 'scope');
|
||||
|
||||
walk(ast, {
|
||||
enter(node) {
|
||||
if (node.scope) scope = node.scope;
|
||||
|
||||
if (!scope.contains('foo')) {
|
||||
// `foo` is not defined, so if we encounter it,
|
||||
// we assume it's a global
|
||||
}
|
||||
},
|
||||
leave(node) {
|
||||
if (node.scope) scope = scope.parent;
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
### createFilter
|
||||
|
||||
Constructs a filter function which can be used to determine whether or not certain modules should be operated upon.
|
||||
|
||||
Parameters: `(include?: <picomatch>, exclude?: <picomatch>, options?: Object)`<br>
|
||||
Returns: `(id: string | unknown) => boolean`
|
||||
|
||||
#### `include` and `exclude`
|
||||
|
||||
Type: `String | RegExp | Array[...String|RegExp]`<br>
|
||||
|
||||
A valid [`picomatch`](https://github.com/micromatch/picomatch#globbing-features) pattern, or array of patterns. If `options.include` is omitted or has zero length, filter will return `true` by default. Otherwise, an ID must match one or more of the `picomatch` patterns, and must not match any of the `options.exclude` patterns.
|
||||
|
||||
Note that `picomatch` patterns are very similar to [`minimatch`](https://github.com/isaacs/minimatch#readme) patterns, and in most use cases, they are interchangeable. If you have more specific pattern matching needs, you can view [this comparison table](https://github.com/micromatch/picomatch#library-comparisons) to learn more about where the libraries differ.
|
||||
|
||||
#### `options`
|
||||
|
||||
##### `resolve`
|
||||
|
||||
Type: `String | Boolean | null`
|
||||
|
||||
Optionally resolves the patterns against a directory other than `process.cwd()`. If a `String` is specified, then the value will be used as the base directory. Relative paths will be resolved against `process.cwd()` first. If `false`, then the patterns will not be resolved against any directory. This can be useful if you want to create a filter for virtual module names.
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { createFilter } from '@rollup/pluginutils';
|
||||
|
||||
export default function myPlugin(options = {}) {
|
||||
// assume that the myPlugin accepts options of `options.include` and `options.exclude`
|
||||
var filter = createFilter(options.include, options.exclude, {
|
||||
resolve: '/my/base/dir'
|
||||
});
|
||||
|
||||
return {
|
||||
transform(code, id) {
|
||||
if (!filter(id)) return;
|
||||
|
||||
// proceed with the transformation...
|
||||
}
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
### dataToEsm
|
||||
|
||||
Transforms objects into tree-shakable ES Module imports.
|
||||
|
||||
Parameters: `(data: Object, options: DataToEsmOptions)`<br>
|
||||
Returns: `String`
|
||||
|
||||
#### `data`
|
||||
|
||||
Type: `Object`
|
||||
|
||||
An object to transform into an ES module.
|
||||
|
||||
#### `options`
|
||||
|
||||
Type: `DataToEsmOptions`
|
||||
|
||||
_Note: Please see the TypeScript definition for complete documentation of these options_
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { dataToEsm } from '@rollup/pluginutils';
|
||||
|
||||
const esModuleSource = dataToEsm(
|
||||
{
|
||||
custom: 'data',
|
||||
to: ['treeshake']
|
||||
},
|
||||
{
|
||||
compact: false,
|
||||
indent: '\t',
|
||||
preferConst: true,
|
||||
objectShorthand: true,
|
||||
namedExports: true,
|
||||
includeArbitraryNames: false
|
||||
}
|
||||
);
|
||||
/*
|
||||
Outputs the string ES module source:
|
||||
export const custom = 'data';
|
||||
export const to = ['treeshake'];
|
||||
export default { custom, to };
|
||||
*/
|
||||
```
|
||||
|
||||
### extractAssignedNames
|
||||
|
||||
Extracts the names of all assignment targets based upon specified patterns.
|
||||
|
||||
Parameters: `(param: Node)`<br>
|
||||
Returns: `Array[...String]`
|
||||
|
||||
#### `param`
|
||||
|
||||
Type: `Node`
|
||||
|
||||
An `acorn` AST Node.
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { extractAssignedNames } from '@rollup/pluginutils';
|
||||
import { walk } from 'estree-walker';
|
||||
|
||||
export default function myPlugin(options = {}) {
|
||||
return {
|
||||
transform(code) {
|
||||
const ast = this.parse(code);
|
||||
|
||||
walk(ast, {
|
||||
enter(node) {
|
||||
if (node.type === 'VariableDeclarator') {
|
||||
const declaredNames = extractAssignedNames(node.id);
|
||||
// do something with the declared names
|
||||
// e.g. for `const {x, y: z} = ...` => declaredNames = ['x', 'z']
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
### exactRegex
|
||||
|
||||
Constructs a RegExp that matches the exact string specified. This is useful for plugin hook filters.
|
||||
|
||||
Parameters: `(str: String | Array[...String], flags?: String)`<br>
|
||||
Returns: `RegExp`
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { exactRegex } from '@rollup/pluginutils';
|
||||
|
||||
exactRegex('foobar'); // /^foobar$/
|
||||
exactRegex(['foo', 'bar']); // /^(?:foo|bar)$/
|
||||
exactRegex('foo(bar)', 'i'); // /^foo\(bar\)$/i
|
||||
```
|
||||
|
||||
### makeLegalIdentifier
|
||||
|
||||
Constructs a bundle-safe identifier from a `String`.
|
||||
|
||||
Parameters: `(str: String)`<br>
|
||||
Returns: `String`
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { makeLegalIdentifier } from '@rollup/pluginutils';
|
||||
|
||||
makeLegalIdentifier('foo-bar'); // 'foo_bar'
|
||||
makeLegalIdentifier('typeof'); // '_typeof'
|
||||
```
|
||||
|
||||
### normalizePath
|
||||
|
||||
Converts path separators to forward slash.
|
||||
|
||||
Parameters: `(filename: String)`<br>
|
||||
Returns: `String`
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { normalizePath } from '@rollup/pluginutils';
|
||||
|
||||
normalizePath('foo\\bar'); // 'foo/bar'
|
||||
normalizePath('foo/bar'); // 'foo/bar'
|
||||
```
|
||||
|
||||
### prefixRegex
|
||||
|
||||
Constructs a RegExp that matches a value that has the specified prefix. This is useful for plugin hook filters.
|
||||
|
||||
Parameters: `(str: String | Array[...String], flags?: String)`<br>
|
||||
Returns: `RegExp`
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { prefixRegex } from '@rollup/pluginutils';
|
||||
|
||||
prefixRegex('foobar'); // /^foobar/
|
||||
prefixRegex(['foo', 'bar']); // /^(?:foo|bar)/
|
||||
prefixRegex('foo(bar)', 'i'); // /^foo\(bar\)/i
|
||||
```
|
||||
|
||||
### suffixRegex
|
||||
|
||||
Constructs a RegExp that matches a value that has the specified suffix. This is useful for plugin hook filters.
|
||||
|
||||
Parameters: `(str: String | Array[...String], flags?: String)`<br>
|
||||
Returns: `RegExp`
|
||||
|
||||
#### Usage
|
||||
|
||||
```js
|
||||
import { suffixRegex } from '@rollup/pluginutils';
|
||||
|
||||
suffixRegex('foobar'); // /foobar$/
|
||||
suffixRegex(['foo', 'bar']); // /(?:foo|bar)$/
|
||||
suffixRegex('foo(bar)', 'i'); // /foo\(bar\)$/i
|
||||
```
|
||||
|
||||
## Meta
|
||||
|
||||
[CONTRIBUTING](/.github/CONTRIBUTING.md)
|
||||
|
||||
[LICENSE (MIT)](/LICENSE)
|
||||
+422
@@ -0,0 +1,422 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var path = require('path');
|
||||
var estreeWalker = require('estree-walker');
|
||||
var pm = require('picomatch');
|
||||
|
||||
const addExtension = function addExtension(filename, ext = '.js') {
|
||||
let result = `${filename}`;
|
||||
if (!path.extname(filename))
|
||||
result += ext;
|
||||
return result;
|
||||
};
|
||||
|
||||
const extractors = {
|
||||
ArrayPattern(names, param) {
|
||||
for (const element of param.elements) {
|
||||
if (element)
|
||||
extractors[element.type](names, element);
|
||||
}
|
||||
},
|
||||
AssignmentPattern(names, param) {
|
||||
extractors[param.left.type](names, param.left);
|
||||
},
|
||||
Identifier(names, param) {
|
||||
names.push(param.name);
|
||||
},
|
||||
MemberExpression() { },
|
||||
ObjectPattern(names, param) {
|
||||
for (const prop of param.properties) {
|
||||
// @ts-ignore Typescript reports that this is not a valid type
|
||||
if (prop.type === 'RestElement') {
|
||||
extractors.RestElement(names, prop);
|
||||
}
|
||||
else {
|
||||
extractors[prop.value.type](names, prop.value);
|
||||
}
|
||||
}
|
||||
},
|
||||
RestElement(names, param) {
|
||||
extractors[param.argument.type](names, param.argument);
|
||||
}
|
||||
};
|
||||
const extractAssignedNames = function extractAssignedNames(param) {
|
||||
const names = [];
|
||||
extractors[param.type](names, param);
|
||||
return names;
|
||||
};
|
||||
|
||||
const blockDeclarations = {
|
||||
const: true,
|
||||
let: true
|
||||
};
|
||||
class Scope {
|
||||
constructor(options = {}) {
|
||||
this.parent = options.parent;
|
||||
this.isBlockScope = !!options.block;
|
||||
this.declarations = Object.create(null);
|
||||
if (options.params) {
|
||||
options.params.forEach((param) => {
|
||||
extractAssignedNames(param).forEach((name) => {
|
||||
this.declarations[name] = true;
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
addDeclaration(node, isBlockDeclaration, isVar) {
|
||||
if (!isBlockDeclaration && this.isBlockScope) {
|
||||
// it's a `var` or function node, and this
|
||||
// is a block scope, so we need to go up
|
||||
this.parent.addDeclaration(node, isBlockDeclaration, isVar);
|
||||
}
|
||||
else if (node.id) {
|
||||
extractAssignedNames(node.id).forEach((name) => {
|
||||
this.declarations[name] = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
contains(name) {
|
||||
return this.declarations[name] || (this.parent ? this.parent.contains(name) : false);
|
||||
}
|
||||
}
|
||||
const attachScopes = function attachScopes(ast, propertyName = 'scope') {
|
||||
let scope = new Scope();
|
||||
estreeWalker.walk(ast, {
|
||||
enter(n, parent) {
|
||||
const node = n;
|
||||
// function foo () {...}
|
||||
// class Foo {...}
|
||||
if (/(?:Function|Class)Declaration/.test(node.type)) {
|
||||
scope.addDeclaration(node, false, false);
|
||||
}
|
||||
// var foo = 1
|
||||
if (node.type === 'VariableDeclaration') {
|
||||
const { kind } = node;
|
||||
const isBlockDeclaration = blockDeclarations[kind];
|
||||
node.declarations.forEach((declaration) => {
|
||||
scope.addDeclaration(declaration, isBlockDeclaration, true);
|
||||
});
|
||||
}
|
||||
let newScope;
|
||||
// create new function scope
|
||||
if (node.type.includes('Function')) {
|
||||
const func = node;
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: false,
|
||||
params: func.params
|
||||
});
|
||||
// named function expressions - the name is considered
|
||||
// part of the function's scope
|
||||
if (func.type === 'FunctionExpression' && func.id) {
|
||||
newScope.addDeclaration(func, false, false);
|
||||
}
|
||||
}
|
||||
// create new for scope
|
||||
if (/For(?:In|Of)?Statement/.test(node.type)) {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: true
|
||||
});
|
||||
}
|
||||
// create new block scope
|
||||
if (node.type === 'BlockStatement' && !parent.type.includes('Function')) {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: true
|
||||
});
|
||||
}
|
||||
// catch clause has its own block scope
|
||||
if (node.type === 'CatchClause') {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
params: node.param ? [node.param] : [],
|
||||
block: true
|
||||
});
|
||||
}
|
||||
if (newScope) {
|
||||
Object.defineProperty(node, propertyName, {
|
||||
value: newScope,
|
||||
configurable: true
|
||||
});
|
||||
scope = newScope;
|
||||
}
|
||||
},
|
||||
leave(n) {
|
||||
const node = n;
|
||||
if (node[propertyName])
|
||||
scope = scope.parent;
|
||||
}
|
||||
});
|
||||
return scope;
|
||||
};
|
||||
|
||||
// Helper since Typescript can't detect readonly arrays with Array.isArray
|
||||
function isArray(arg) {
|
||||
return Array.isArray(arg);
|
||||
}
|
||||
function ensureArray(thing) {
|
||||
if (isArray(thing))
|
||||
return thing;
|
||||
if (thing == null)
|
||||
return [];
|
||||
return [thing];
|
||||
}
|
||||
|
||||
const normalizePathRegExp = new RegExp(`\\${path.win32.sep}`, 'g');
|
||||
const normalizePath = function normalizePath(filename) {
|
||||
return filename.replace(normalizePathRegExp, path.posix.sep);
|
||||
};
|
||||
|
||||
function getMatcherString(id, resolutionBase) {
|
||||
if (resolutionBase === false || path.isAbsolute(id) || id.startsWith('**')) {
|
||||
return normalizePath(id);
|
||||
}
|
||||
// resolve('') is valid and will default to process.cwd()
|
||||
const basePath = normalizePath(path.resolve(resolutionBase || ''))
|
||||
// escape all possible (posix + win) path characters that might interfere with regex
|
||||
.replace(/[-^$*+?.()|[\]{}]/g, '\\$&');
|
||||
// Note that we use posix.join because:
|
||||
// 1. the basePath has been normalized to use /
|
||||
// 2. the incoming glob (id) matcher, also uses /
|
||||
// otherwise Node will force backslash (\) on windows
|
||||
return path.posix.join(basePath, normalizePath(id));
|
||||
}
|
||||
const createFilter = function createFilter(include, exclude, options) {
|
||||
const resolutionBase = options && options.resolve;
|
||||
const getMatcher = (id) => id instanceof RegExp
|
||||
? id
|
||||
: {
|
||||
test: (what) => {
|
||||
// this refactor is a tad overly verbose but makes for easy debugging
|
||||
const pattern = getMatcherString(id, resolutionBase);
|
||||
const fn = pm(pattern, { dot: true });
|
||||
const result = fn(what);
|
||||
return result;
|
||||
}
|
||||
};
|
||||
const includeMatchers = ensureArray(include).map(getMatcher);
|
||||
const excludeMatchers = ensureArray(exclude).map(getMatcher);
|
||||
if (!includeMatchers.length && !excludeMatchers.length)
|
||||
return (id) => typeof id === 'string' && !id.includes('\0');
|
||||
return function result(id) {
|
||||
if (typeof id !== 'string')
|
||||
return false;
|
||||
if (id.includes('\0'))
|
||||
return false;
|
||||
const pathId = normalizePath(id);
|
||||
for (let i = 0; i < excludeMatchers.length; ++i) {
|
||||
const matcher = excludeMatchers[i];
|
||||
if (matcher instanceof RegExp) {
|
||||
matcher.lastIndex = 0;
|
||||
}
|
||||
if (matcher.test(pathId))
|
||||
return false;
|
||||
}
|
||||
for (let i = 0; i < includeMatchers.length; ++i) {
|
||||
const matcher = includeMatchers[i];
|
||||
if (matcher instanceof RegExp) {
|
||||
matcher.lastIndex = 0;
|
||||
}
|
||||
if (matcher.test(pathId))
|
||||
return true;
|
||||
}
|
||||
return !includeMatchers.length;
|
||||
};
|
||||
};
|
||||
|
||||
const reservedWords = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield enum await implements package protected static interface private public';
|
||||
const builtins = 'arguments Infinity NaN undefined null true false eval uneval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Symbol Error EvalError InternalError RangeError ReferenceError SyntaxError TypeError URIError Number Math Date String RegExp Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array Map Set WeakMap WeakSet SIMD ArrayBuffer DataView JSON Promise Generator GeneratorFunction Reflect Proxy Intl';
|
||||
const forbiddenIdentifiers = new Set(`${reservedWords} ${builtins}`.split(' '));
|
||||
forbiddenIdentifiers.add('');
|
||||
const makeLegalIdentifier = function makeLegalIdentifier(str) {
|
||||
let identifier = str
|
||||
.replace(/-(\w)/g, (_, letter) => letter.toUpperCase())
|
||||
.replace(/[^$_a-zA-Z0-9]/g, '_');
|
||||
if (/\d/.test(identifier[0]) || forbiddenIdentifiers.has(identifier)) {
|
||||
identifier = `_${identifier}`;
|
||||
}
|
||||
return identifier || '_';
|
||||
};
|
||||
|
||||
function stringify(obj) {
|
||||
return (JSON.stringify(obj) || 'undefined').replace(/[\u2028\u2029]/g, (char) => `\\u${`000${char.charCodeAt(0).toString(16)}`.slice(-4)}`);
|
||||
}
|
||||
function serializeArray(arr, indent, baseIndent) {
|
||||
let output = '[';
|
||||
const separator = indent ? `\n${baseIndent}${indent}` : '';
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const key = arr[i];
|
||||
output += `${i > 0 ? ',' : ''}${separator}${serialize(key, indent, baseIndent + indent)}`;
|
||||
}
|
||||
return `${output}${indent ? `\n${baseIndent}` : ''}]`;
|
||||
}
|
||||
function serializeObject(obj, indent, baseIndent) {
|
||||
let output = '{';
|
||||
const separator = indent ? `\n${baseIndent}${indent}` : '';
|
||||
const entries = Object.entries(obj);
|
||||
for (let i = 0; i < entries.length; i++) {
|
||||
const [key, value] = entries[i];
|
||||
const stringKey = makeLegalIdentifier(key) === key ? key : stringify(key);
|
||||
output += `${i > 0 ? ',' : ''}${separator}${stringKey}:${indent ? ' ' : ''}${serialize(value, indent, baseIndent + indent)}`;
|
||||
}
|
||||
return `${output}${indent ? `\n${baseIndent}` : ''}}`;
|
||||
}
|
||||
function serialize(obj, indent, baseIndent) {
|
||||
if (typeof obj === 'object' && obj !== null) {
|
||||
if (Array.isArray(obj))
|
||||
return serializeArray(obj, indent, baseIndent);
|
||||
if (obj instanceof Date)
|
||||
return `new Date(${obj.getTime()})`;
|
||||
if (obj instanceof RegExp)
|
||||
return obj.toString();
|
||||
return serializeObject(obj, indent, baseIndent);
|
||||
}
|
||||
if (typeof obj === 'number') {
|
||||
if (obj === Infinity)
|
||||
return 'Infinity';
|
||||
if (obj === -Infinity)
|
||||
return '-Infinity';
|
||||
if (obj === 0)
|
||||
return 1 / obj === Infinity ? '0' : '-0';
|
||||
if (obj !== obj)
|
||||
return 'NaN'; // eslint-disable-line no-self-compare
|
||||
}
|
||||
if (typeof obj === 'symbol') {
|
||||
const key = Symbol.keyFor(obj);
|
||||
// eslint-disable-next-line no-undefined
|
||||
if (key !== undefined)
|
||||
return `Symbol.for(${stringify(key)})`;
|
||||
}
|
||||
if (typeof obj === 'bigint')
|
||||
return `${obj}n`;
|
||||
return stringify(obj);
|
||||
}
|
||||
// isWellFormed exists from Node.js 20
|
||||
const hasStringIsWellFormed = 'isWellFormed' in String.prototype;
|
||||
function isWellFormedString(input) {
|
||||
// @ts-expect-error String::isWellFormed exists from ES2024. tsconfig lib is set to ES6
|
||||
if (hasStringIsWellFormed)
|
||||
return input.isWellFormed();
|
||||
// https://github.com/tc39/proposal-is-usv-string/blob/main/README.md#algorithm
|
||||
return !/\p{Surrogate}/u.test(input);
|
||||
}
|
||||
// Matches the ECMAScript `IdentifierName` grammar, which (unlike a binding
|
||||
// identifier) also accepts reserved words such as `switch`/`await`. Such names
|
||||
// can be re-exported with the `export { _x as switch }` form, valid since ES2015.
|
||||
const identifierNameRE = /^[$_\p{ID_Start}][$\u200c\u200d\p{ID_Continue}]*$/u;
|
||||
const dataToEsm = function dataToEsm(data, options = {}) {
|
||||
var _a, _b;
|
||||
const t = options.compact ? '' : 'indent' in options ? options.indent : '\t';
|
||||
const _ = options.compact ? '' : ' ';
|
||||
const n = options.compact ? '' : '\n';
|
||||
const declarationType = options.preferConst ? 'const' : 'var';
|
||||
if (options.namedExports === false ||
|
||||
typeof data !== 'object' ||
|
||||
Array.isArray(data) ||
|
||||
data instanceof Date ||
|
||||
data instanceof RegExp ||
|
||||
data === null) {
|
||||
const code = serialize(data, options.compact ? null : t, '');
|
||||
const magic = _ || (/^[{[\-\/]/.test(code) ? '' : ' '); // eslint-disable-line no-useless-escape
|
||||
return `export default${magic}${code};`;
|
||||
}
|
||||
let maxUnderbarPrefixLength = 0;
|
||||
for (const key of Object.keys(data)) {
|
||||
const underbarPrefixLength = (_b = (_a = /^(_+)/.exec(key)) === null || _a === void 0 ? void 0 : _a[0].length) !== null && _b !== void 0 ? _b : 0;
|
||||
if (underbarPrefixLength > maxUnderbarPrefixLength) {
|
||||
maxUnderbarPrefixLength = underbarPrefixLength;
|
||||
}
|
||||
}
|
||||
const arbitraryNamePrefix = `${'_'.repeat(maxUnderbarPrefixLength + 1)}arbitrary`;
|
||||
let namedExportCode = '';
|
||||
const defaultExportRows = [];
|
||||
const arbitraryNameExportRows = [];
|
||||
for (const [key, value] of Object.entries(data)) {
|
||||
if (key === makeLegalIdentifier(key)) {
|
||||
if (options.objectShorthand)
|
||||
defaultExportRows.push(key);
|
||||
else
|
||||
defaultExportRows.push(`${key}:${_}${key}`);
|
||||
namedExportCode += `export ${declarationType} ${key}${_}=${_}${serialize(value, options.compact ? null : t, '')};${n}`;
|
||||
}
|
||||
else {
|
||||
defaultExportRows.push(`${stringify(key)}:${_}${serialize(value, options.compact ? null : t, '')}`);
|
||||
// A `default` key is exposed only through the default export object: a
|
||||
// `... as default` re-export would clash with the trailing `export default`
|
||||
// and produce a duplicate default export (a SyntaxError).
|
||||
if (key !== 'default') {
|
||||
// A valid `IdentifierName` that is not a legal binding identifier (a
|
||||
// reserved word or global, e.g. `switch`, `await`) is re-exported with the
|
||||
// unquoted `export { _x as switch }` form, valid since ES2015. Any other
|
||||
// key needs the quoted arbitrary-namespace form (ES2022+), which remains
|
||||
// opt-in via `includeArbitraryNames`.
|
||||
const isIdentifierName = identifierNameRE.test(key);
|
||||
if (isIdentifierName || (options.includeArbitraryNames && isWellFormedString(key))) {
|
||||
const variableName = `${arbitraryNamePrefix}${arbitraryNameExportRows.length}`;
|
||||
namedExportCode += `${declarationType} ${variableName}${_}=${_}${serialize(value, options.compact ? null : t, '')};${n}`;
|
||||
arbitraryNameExportRows.push(`${variableName} as ${isIdentifierName ? key : JSON.stringify(key)}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const arbitraryExportCode = arbitraryNameExportRows.length > 0
|
||||
? `export${_}{${n}${t}${arbitraryNameExportRows.join(`,${n}${t}`)}${n}};${n}`
|
||||
: '';
|
||||
const defaultExportCode = `export default${_}{${n}${t}${defaultExportRows.join(`,${n}${t}`)}${n}};${n}`;
|
||||
return `${namedExportCode}${arbitraryExportCode}${defaultExportCode}`;
|
||||
};
|
||||
|
||||
function exactRegex(str, flags) {
|
||||
return new RegExp(`^${combineMultipleStrings(str)}$`, flags);
|
||||
}
|
||||
function prefixRegex(str, flags) {
|
||||
return new RegExp(`^${combineMultipleStrings(str)}`, flags);
|
||||
}
|
||||
function suffixRegex(str, flags) {
|
||||
return new RegExp(`${combineMultipleStrings(str)}$`, flags);
|
||||
}
|
||||
const escapeRegexRE = /[-/\\^$*+?.()|[\]{}]/g;
|
||||
function escapeRegex(str) {
|
||||
return str.replace(escapeRegexRE, '\\$&');
|
||||
}
|
||||
function combineMultipleStrings(str) {
|
||||
if (Array.isArray(str)) {
|
||||
const escapeStr = str.map(escapeRegex).join('|');
|
||||
if (escapeStr && str.length > 1) {
|
||||
return `(?:${escapeStr})`;
|
||||
}
|
||||
return escapeStr;
|
||||
}
|
||||
return escapeRegex(str);
|
||||
}
|
||||
|
||||
// TODO: remove this in next major
|
||||
var index = {
|
||||
addExtension,
|
||||
attachScopes,
|
||||
createFilter,
|
||||
dataToEsm,
|
||||
exactRegex,
|
||||
extractAssignedNames,
|
||||
makeLegalIdentifier,
|
||||
normalizePath,
|
||||
prefixRegex,
|
||||
suffixRegex
|
||||
};
|
||||
|
||||
exports.addExtension = addExtension;
|
||||
exports.attachScopes = attachScopes;
|
||||
exports.createFilter = createFilter;
|
||||
exports.dataToEsm = dataToEsm;
|
||||
exports.default = index;
|
||||
exports.exactRegex = exactRegex;
|
||||
exports.extractAssignedNames = extractAssignedNames;
|
||||
exports.makeLegalIdentifier = makeLegalIdentifier;
|
||||
exports.normalizePath = normalizePath;
|
||||
exports.prefixRegex = prefixRegex;
|
||||
exports.suffixRegex = suffixRegex;
|
||||
module.exports = Object.assign(exports.default, exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
+407
@@ -0,0 +1,407 @@
|
||||
import { extname, win32, posix, isAbsolute, resolve } from 'path';
|
||||
import { walk } from 'estree-walker';
|
||||
import pm from 'picomatch';
|
||||
|
||||
const addExtension = function addExtension(filename, ext = '.js') {
|
||||
let result = `${filename}`;
|
||||
if (!extname(filename))
|
||||
result += ext;
|
||||
return result;
|
||||
};
|
||||
|
||||
const extractors = {
|
||||
ArrayPattern(names, param) {
|
||||
for (const element of param.elements) {
|
||||
if (element)
|
||||
extractors[element.type](names, element);
|
||||
}
|
||||
},
|
||||
AssignmentPattern(names, param) {
|
||||
extractors[param.left.type](names, param.left);
|
||||
},
|
||||
Identifier(names, param) {
|
||||
names.push(param.name);
|
||||
},
|
||||
MemberExpression() { },
|
||||
ObjectPattern(names, param) {
|
||||
for (const prop of param.properties) {
|
||||
// @ts-ignore Typescript reports that this is not a valid type
|
||||
if (prop.type === 'RestElement') {
|
||||
extractors.RestElement(names, prop);
|
||||
}
|
||||
else {
|
||||
extractors[prop.value.type](names, prop.value);
|
||||
}
|
||||
}
|
||||
},
|
||||
RestElement(names, param) {
|
||||
extractors[param.argument.type](names, param.argument);
|
||||
}
|
||||
};
|
||||
const extractAssignedNames = function extractAssignedNames(param) {
|
||||
const names = [];
|
||||
extractors[param.type](names, param);
|
||||
return names;
|
||||
};
|
||||
|
||||
const blockDeclarations = {
|
||||
const: true,
|
||||
let: true
|
||||
};
|
||||
class Scope {
|
||||
constructor(options = {}) {
|
||||
this.parent = options.parent;
|
||||
this.isBlockScope = !!options.block;
|
||||
this.declarations = Object.create(null);
|
||||
if (options.params) {
|
||||
options.params.forEach((param) => {
|
||||
extractAssignedNames(param).forEach((name) => {
|
||||
this.declarations[name] = true;
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
addDeclaration(node, isBlockDeclaration, isVar) {
|
||||
if (!isBlockDeclaration && this.isBlockScope) {
|
||||
// it's a `var` or function node, and this
|
||||
// is a block scope, so we need to go up
|
||||
this.parent.addDeclaration(node, isBlockDeclaration, isVar);
|
||||
}
|
||||
else if (node.id) {
|
||||
extractAssignedNames(node.id).forEach((name) => {
|
||||
this.declarations[name] = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
contains(name) {
|
||||
return this.declarations[name] || (this.parent ? this.parent.contains(name) : false);
|
||||
}
|
||||
}
|
||||
const attachScopes = function attachScopes(ast, propertyName = 'scope') {
|
||||
let scope = new Scope();
|
||||
walk(ast, {
|
||||
enter(n, parent) {
|
||||
const node = n;
|
||||
// function foo () {...}
|
||||
// class Foo {...}
|
||||
if (/(?:Function|Class)Declaration/.test(node.type)) {
|
||||
scope.addDeclaration(node, false, false);
|
||||
}
|
||||
// var foo = 1
|
||||
if (node.type === 'VariableDeclaration') {
|
||||
const { kind } = node;
|
||||
const isBlockDeclaration = blockDeclarations[kind];
|
||||
node.declarations.forEach((declaration) => {
|
||||
scope.addDeclaration(declaration, isBlockDeclaration, true);
|
||||
});
|
||||
}
|
||||
let newScope;
|
||||
// create new function scope
|
||||
if (node.type.includes('Function')) {
|
||||
const func = node;
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: false,
|
||||
params: func.params
|
||||
});
|
||||
// named function expressions - the name is considered
|
||||
// part of the function's scope
|
||||
if (func.type === 'FunctionExpression' && func.id) {
|
||||
newScope.addDeclaration(func, false, false);
|
||||
}
|
||||
}
|
||||
// create new for scope
|
||||
if (/For(?:In|Of)?Statement/.test(node.type)) {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: true
|
||||
});
|
||||
}
|
||||
// create new block scope
|
||||
if (node.type === 'BlockStatement' && !parent.type.includes('Function')) {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
block: true
|
||||
});
|
||||
}
|
||||
// catch clause has its own block scope
|
||||
if (node.type === 'CatchClause') {
|
||||
newScope = new Scope({
|
||||
parent: scope,
|
||||
params: node.param ? [node.param] : [],
|
||||
block: true
|
||||
});
|
||||
}
|
||||
if (newScope) {
|
||||
Object.defineProperty(node, propertyName, {
|
||||
value: newScope,
|
||||
configurable: true
|
||||
});
|
||||
scope = newScope;
|
||||
}
|
||||
},
|
||||
leave(n) {
|
||||
const node = n;
|
||||
if (node[propertyName])
|
||||
scope = scope.parent;
|
||||
}
|
||||
});
|
||||
return scope;
|
||||
};
|
||||
|
||||
// Helper since Typescript can't detect readonly arrays with Array.isArray
|
||||
function isArray(arg) {
|
||||
return Array.isArray(arg);
|
||||
}
|
||||
function ensureArray(thing) {
|
||||
if (isArray(thing))
|
||||
return thing;
|
||||
if (thing == null)
|
||||
return [];
|
||||
return [thing];
|
||||
}
|
||||
|
||||
const normalizePathRegExp = new RegExp(`\\${win32.sep}`, 'g');
|
||||
const normalizePath = function normalizePath(filename) {
|
||||
return filename.replace(normalizePathRegExp, posix.sep);
|
||||
};
|
||||
|
||||
function getMatcherString(id, resolutionBase) {
|
||||
if (resolutionBase === false || isAbsolute(id) || id.startsWith('**')) {
|
||||
return normalizePath(id);
|
||||
}
|
||||
// resolve('') is valid and will default to process.cwd()
|
||||
const basePath = normalizePath(resolve(resolutionBase || ''))
|
||||
// escape all possible (posix + win) path characters that might interfere with regex
|
||||
.replace(/[-^$*+?.()|[\]{}]/g, '\\$&');
|
||||
// Note that we use posix.join because:
|
||||
// 1. the basePath has been normalized to use /
|
||||
// 2. the incoming glob (id) matcher, also uses /
|
||||
// otherwise Node will force backslash (\) on windows
|
||||
return posix.join(basePath, normalizePath(id));
|
||||
}
|
||||
const createFilter = function createFilter(include, exclude, options) {
|
||||
const resolutionBase = options && options.resolve;
|
||||
const getMatcher = (id) => id instanceof RegExp
|
||||
? id
|
||||
: {
|
||||
test: (what) => {
|
||||
// this refactor is a tad overly verbose but makes for easy debugging
|
||||
const pattern = getMatcherString(id, resolutionBase);
|
||||
const fn = pm(pattern, { dot: true });
|
||||
const result = fn(what);
|
||||
return result;
|
||||
}
|
||||
};
|
||||
const includeMatchers = ensureArray(include).map(getMatcher);
|
||||
const excludeMatchers = ensureArray(exclude).map(getMatcher);
|
||||
if (!includeMatchers.length && !excludeMatchers.length)
|
||||
return (id) => typeof id === 'string' && !id.includes('\0');
|
||||
return function result(id) {
|
||||
if (typeof id !== 'string')
|
||||
return false;
|
||||
if (id.includes('\0'))
|
||||
return false;
|
||||
const pathId = normalizePath(id);
|
||||
for (let i = 0; i < excludeMatchers.length; ++i) {
|
||||
const matcher = excludeMatchers[i];
|
||||
if (matcher instanceof RegExp) {
|
||||
matcher.lastIndex = 0;
|
||||
}
|
||||
if (matcher.test(pathId))
|
||||
return false;
|
||||
}
|
||||
for (let i = 0; i < includeMatchers.length; ++i) {
|
||||
const matcher = includeMatchers[i];
|
||||
if (matcher instanceof RegExp) {
|
||||
matcher.lastIndex = 0;
|
||||
}
|
||||
if (matcher.test(pathId))
|
||||
return true;
|
||||
}
|
||||
return !includeMatchers.length;
|
||||
};
|
||||
};
|
||||
|
||||
const reservedWords = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield enum await implements package protected static interface private public';
|
||||
const builtins = 'arguments Infinity NaN undefined null true false eval uneval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Symbol Error EvalError InternalError RangeError ReferenceError SyntaxError TypeError URIError Number Math Date String RegExp Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array Map Set WeakMap WeakSet SIMD ArrayBuffer DataView JSON Promise Generator GeneratorFunction Reflect Proxy Intl';
|
||||
const forbiddenIdentifiers = new Set(`${reservedWords} ${builtins}`.split(' '));
|
||||
forbiddenIdentifiers.add('');
|
||||
const makeLegalIdentifier = function makeLegalIdentifier(str) {
|
||||
let identifier = str
|
||||
.replace(/-(\w)/g, (_, letter) => letter.toUpperCase())
|
||||
.replace(/[^$_a-zA-Z0-9]/g, '_');
|
||||
if (/\d/.test(identifier[0]) || forbiddenIdentifiers.has(identifier)) {
|
||||
identifier = `_${identifier}`;
|
||||
}
|
||||
return identifier || '_';
|
||||
};
|
||||
|
||||
function stringify(obj) {
|
||||
return (JSON.stringify(obj) || 'undefined').replace(/[\u2028\u2029]/g, (char) => `\\u${`000${char.charCodeAt(0).toString(16)}`.slice(-4)}`);
|
||||
}
|
||||
function serializeArray(arr, indent, baseIndent) {
|
||||
let output = '[';
|
||||
const separator = indent ? `\n${baseIndent}${indent}` : '';
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const key = arr[i];
|
||||
output += `${i > 0 ? ',' : ''}${separator}${serialize(key, indent, baseIndent + indent)}`;
|
||||
}
|
||||
return `${output}${indent ? `\n${baseIndent}` : ''}]`;
|
||||
}
|
||||
function serializeObject(obj, indent, baseIndent) {
|
||||
let output = '{';
|
||||
const separator = indent ? `\n${baseIndent}${indent}` : '';
|
||||
const entries = Object.entries(obj);
|
||||
for (let i = 0; i < entries.length; i++) {
|
||||
const [key, value] = entries[i];
|
||||
const stringKey = makeLegalIdentifier(key) === key ? key : stringify(key);
|
||||
output += `${i > 0 ? ',' : ''}${separator}${stringKey}:${indent ? ' ' : ''}${serialize(value, indent, baseIndent + indent)}`;
|
||||
}
|
||||
return `${output}${indent ? `\n${baseIndent}` : ''}}`;
|
||||
}
|
||||
function serialize(obj, indent, baseIndent) {
|
||||
if (typeof obj === 'object' && obj !== null) {
|
||||
if (Array.isArray(obj))
|
||||
return serializeArray(obj, indent, baseIndent);
|
||||
if (obj instanceof Date)
|
||||
return `new Date(${obj.getTime()})`;
|
||||
if (obj instanceof RegExp)
|
||||
return obj.toString();
|
||||
return serializeObject(obj, indent, baseIndent);
|
||||
}
|
||||
if (typeof obj === 'number') {
|
||||
if (obj === Infinity)
|
||||
return 'Infinity';
|
||||
if (obj === -Infinity)
|
||||
return '-Infinity';
|
||||
if (obj === 0)
|
||||
return 1 / obj === Infinity ? '0' : '-0';
|
||||
if (obj !== obj)
|
||||
return 'NaN'; // eslint-disable-line no-self-compare
|
||||
}
|
||||
if (typeof obj === 'symbol') {
|
||||
const key = Symbol.keyFor(obj);
|
||||
// eslint-disable-next-line no-undefined
|
||||
if (key !== undefined)
|
||||
return `Symbol.for(${stringify(key)})`;
|
||||
}
|
||||
if (typeof obj === 'bigint')
|
||||
return `${obj}n`;
|
||||
return stringify(obj);
|
||||
}
|
||||
// isWellFormed exists from Node.js 20
|
||||
const hasStringIsWellFormed = 'isWellFormed' in String.prototype;
|
||||
function isWellFormedString(input) {
|
||||
// @ts-expect-error String::isWellFormed exists from ES2024. tsconfig lib is set to ES6
|
||||
if (hasStringIsWellFormed)
|
||||
return input.isWellFormed();
|
||||
// https://github.com/tc39/proposal-is-usv-string/blob/main/README.md#algorithm
|
||||
return !/\p{Surrogate}/u.test(input);
|
||||
}
|
||||
// Matches the ECMAScript `IdentifierName` grammar, which (unlike a binding
|
||||
// identifier) also accepts reserved words such as `switch`/`await`. Such names
|
||||
// can be re-exported with the `export { _x as switch }` form, valid since ES2015.
|
||||
const identifierNameRE = /^[$_\p{ID_Start}][$\u200c\u200d\p{ID_Continue}]*$/u;
|
||||
const dataToEsm = function dataToEsm(data, options = {}) {
|
||||
var _a, _b;
|
||||
const t = options.compact ? '' : 'indent' in options ? options.indent : '\t';
|
||||
const _ = options.compact ? '' : ' ';
|
||||
const n = options.compact ? '' : '\n';
|
||||
const declarationType = options.preferConst ? 'const' : 'var';
|
||||
if (options.namedExports === false ||
|
||||
typeof data !== 'object' ||
|
||||
Array.isArray(data) ||
|
||||
data instanceof Date ||
|
||||
data instanceof RegExp ||
|
||||
data === null) {
|
||||
const code = serialize(data, options.compact ? null : t, '');
|
||||
const magic = _ || (/^[{[\-\/]/.test(code) ? '' : ' '); // eslint-disable-line no-useless-escape
|
||||
return `export default${magic}${code};`;
|
||||
}
|
||||
let maxUnderbarPrefixLength = 0;
|
||||
for (const key of Object.keys(data)) {
|
||||
const underbarPrefixLength = (_b = (_a = /^(_+)/.exec(key)) === null || _a === void 0 ? void 0 : _a[0].length) !== null && _b !== void 0 ? _b : 0;
|
||||
if (underbarPrefixLength > maxUnderbarPrefixLength) {
|
||||
maxUnderbarPrefixLength = underbarPrefixLength;
|
||||
}
|
||||
}
|
||||
const arbitraryNamePrefix = `${'_'.repeat(maxUnderbarPrefixLength + 1)}arbitrary`;
|
||||
let namedExportCode = '';
|
||||
const defaultExportRows = [];
|
||||
const arbitraryNameExportRows = [];
|
||||
for (const [key, value] of Object.entries(data)) {
|
||||
if (key === makeLegalIdentifier(key)) {
|
||||
if (options.objectShorthand)
|
||||
defaultExportRows.push(key);
|
||||
else
|
||||
defaultExportRows.push(`${key}:${_}${key}`);
|
||||
namedExportCode += `export ${declarationType} ${key}${_}=${_}${serialize(value, options.compact ? null : t, '')};${n}`;
|
||||
}
|
||||
else {
|
||||
defaultExportRows.push(`${stringify(key)}:${_}${serialize(value, options.compact ? null : t, '')}`);
|
||||
// A `default` key is exposed only through the default export object: a
|
||||
// `... as default` re-export would clash with the trailing `export default`
|
||||
// and produce a duplicate default export (a SyntaxError).
|
||||
if (key !== 'default') {
|
||||
// A valid `IdentifierName` that is not a legal binding identifier (a
|
||||
// reserved word or global, e.g. `switch`, `await`) is re-exported with the
|
||||
// unquoted `export { _x as switch }` form, valid since ES2015. Any other
|
||||
// key needs the quoted arbitrary-namespace form (ES2022+), which remains
|
||||
// opt-in via `includeArbitraryNames`.
|
||||
const isIdentifierName = identifierNameRE.test(key);
|
||||
if (isIdentifierName || (options.includeArbitraryNames && isWellFormedString(key))) {
|
||||
const variableName = `${arbitraryNamePrefix}${arbitraryNameExportRows.length}`;
|
||||
namedExportCode += `${declarationType} ${variableName}${_}=${_}${serialize(value, options.compact ? null : t, '')};${n}`;
|
||||
arbitraryNameExportRows.push(`${variableName} as ${isIdentifierName ? key : JSON.stringify(key)}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const arbitraryExportCode = arbitraryNameExportRows.length > 0
|
||||
? `export${_}{${n}${t}${arbitraryNameExportRows.join(`,${n}${t}`)}${n}};${n}`
|
||||
: '';
|
||||
const defaultExportCode = `export default${_}{${n}${t}${defaultExportRows.join(`,${n}${t}`)}${n}};${n}`;
|
||||
return `${namedExportCode}${arbitraryExportCode}${defaultExportCode}`;
|
||||
};
|
||||
|
||||
function exactRegex(str, flags) {
|
||||
return new RegExp(`^${combineMultipleStrings(str)}$`, flags);
|
||||
}
|
||||
function prefixRegex(str, flags) {
|
||||
return new RegExp(`^${combineMultipleStrings(str)}`, flags);
|
||||
}
|
||||
function suffixRegex(str, flags) {
|
||||
return new RegExp(`${combineMultipleStrings(str)}$`, flags);
|
||||
}
|
||||
const escapeRegexRE = /[-/\\^$*+?.()|[\]{}]/g;
|
||||
function escapeRegex(str) {
|
||||
return str.replace(escapeRegexRE, '\\$&');
|
||||
}
|
||||
function combineMultipleStrings(str) {
|
||||
if (Array.isArray(str)) {
|
||||
const escapeStr = str.map(escapeRegex).join('|');
|
||||
if (escapeStr && str.length > 1) {
|
||||
return `(?:${escapeStr})`;
|
||||
}
|
||||
return escapeStr;
|
||||
}
|
||||
return escapeRegex(str);
|
||||
}
|
||||
|
||||
// TODO: remove this in next major
|
||||
var index = {
|
||||
addExtension,
|
||||
attachScopes,
|
||||
createFilter,
|
||||
dataToEsm,
|
||||
exactRegex,
|
||||
extractAssignedNames,
|
||||
makeLegalIdentifier,
|
||||
normalizePath,
|
||||
prefixRegex,
|
||||
suffixRegex
|
||||
};
|
||||
|
||||
export { addExtension, attachScopes, createFilter, dataToEsm, index as default, exactRegex, extractAssignedNames, makeLegalIdentifier, normalizePath, prefixRegex, suffixRegex };
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"name": "@rollup/pluginutils",
|
||||
"version": "5.4.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"description": "A set of utility functions commonly used by Rollup plugins",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"url": "rollup/plugins",
|
||||
"directory": "packages/pluginutils"
|
||||
},
|
||||
"author": "Rich Harris <richard.a.harris@gmail.com>",
|
||||
"homepage": "https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/rollup/plugins/issues"
|
||||
},
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/es/index.js",
|
||||
"type": "commonjs",
|
||||
"exports": {
|
||||
"types": "./types/index.d.ts",
|
||||
"import": "./dist/es/index.js",
|
||||
"default": "./dist/cjs/index.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/**/*.map",
|
||||
"types",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"keywords": [
|
||||
"rollup",
|
||||
"plugin",
|
||||
"utils"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"rollup": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/estree": "^1.0.0",
|
||||
"estree-walker": "^2.0.2",
|
||||
"picomatch": "^4.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^23.0.0",
|
||||
"@rollup/plugin-node-resolve": "^15.0.0",
|
||||
"@rollup/plugin-typescript": "^9.0.1",
|
||||
"@types/node": "^14.18.30",
|
||||
"@types/picomatch": "^2.3.0",
|
||||
"acorn": "^8.8.0",
|
||||
"rollup": "^4.0.0-24",
|
||||
"typescript": "^4.8.3"
|
||||
},
|
||||
"types": "./types/index.d.ts",
|
||||
"nyc": {
|
||||
"extension": [
|
||||
".js",
|
||||
".ts"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
||||
"ci:lint": "pnpm build && pnpm lint",
|
||||
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
||||
"ci:test": "pnpm test -- --reporter=verbose",
|
||||
"prebuild": "del-cli dist",
|
||||
"prerelease": "pnpm build",
|
||||
"pretest": "pnpm build --sourcemap",
|
||||
"release": "pnpm --workspace-root package:release $(pwd)",
|
||||
"test": "vitest --config ../../.config/vitest.config.mts run",
|
||||
"test:ts": "tsc --noEmit"
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
import type { BaseNode } from 'estree';
|
||||
|
||||
export interface AttachedScope {
|
||||
parent?: AttachedScope;
|
||||
isBlockScope: boolean;
|
||||
declarations: { [key: string]: boolean };
|
||||
addDeclaration(node: BaseNode, isBlockDeclaration: boolean, isVar: boolean): void;
|
||||
contains(name: string): boolean;
|
||||
}
|
||||
|
||||
export interface DataToEsmOptions {
|
||||
compact?: boolean;
|
||||
/**
|
||||
* @desc When this option is set, dataToEsm will generate a named export for keys that
|
||||
* are not a valid identifier, by leveraging the "Arbitrary Module Namespace Identifier
|
||||
* Names" feature. See: https://github.com/tc39/ecma262/pull/2154
|
||||
*/
|
||||
includeArbitraryNames?: boolean;
|
||||
indent?: string;
|
||||
namedExports?: boolean;
|
||||
objectShorthand?: boolean;
|
||||
preferConst?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* A valid `picomatch` glob pattern, or array of patterns.
|
||||
*/
|
||||
export type FilterPattern = ReadonlyArray<string | RegExp> | string | RegExp | null;
|
||||
|
||||
/**
|
||||
* Adds an extension to a module ID if one does not exist.
|
||||
*/
|
||||
export function addExtension(filename: string, ext?: string): string;
|
||||
|
||||
/**
|
||||
* Attaches `Scope` objects to the relevant nodes of an AST.
|
||||
* Each `Scope` object has a `scope.contains(name)` method that returns `true`
|
||||
* if a given name is defined in the current scope or a parent scope.
|
||||
*/
|
||||
export function attachScopes(ast: BaseNode, propertyName?: string): AttachedScope;
|
||||
|
||||
/**
|
||||
* Constructs a filter function which can be used to determine whether or not
|
||||
* certain modules should be operated upon.
|
||||
* @param include If `include` is omitted or has zero length, filter will return `true` by default.
|
||||
* @param exclude ID must not match any of the `exclude` patterns.
|
||||
* @param options Optionally resolves the patterns against a directory other than `process.cwd()`.
|
||||
* If a `string` is specified, then the value will be used as the base directory.
|
||||
* Relative paths will be resolved against `process.cwd()` first.
|
||||
* If `false`, then the patterns will not be resolved against any directory.
|
||||
* This can be useful if you want to create a filter for virtual module names.
|
||||
*/
|
||||
export function createFilter(
|
||||
include?: FilterPattern,
|
||||
exclude?: FilterPattern,
|
||||
options?: { resolve?: string | false | null }
|
||||
): (id: string | unknown) => boolean;
|
||||
|
||||
/**
|
||||
* Transforms objects into tree-shakable ES Module imports.
|
||||
* @param data An object to transform into an ES module.
|
||||
*/
|
||||
export function dataToEsm(data: unknown, options?: DataToEsmOptions): string;
|
||||
|
||||
/**
|
||||
* Constructs a RegExp that matches the exact string specified.
|
||||
* @param str the string to match.
|
||||
* @param flags flags for the RegExp.
|
||||
*/
|
||||
export function exactRegex(str: string | string[], flags?: string): RegExp;
|
||||
|
||||
/**
|
||||
* Extracts the names of all assignment targets based upon specified patterns.
|
||||
* @param param An `acorn` AST Node.
|
||||
*/
|
||||
export function extractAssignedNames(param: BaseNode): string[];
|
||||
|
||||
/**
|
||||
* Constructs a bundle-safe identifier from a `string`.
|
||||
*/
|
||||
export function makeLegalIdentifier(str: string): string;
|
||||
|
||||
/**
|
||||
* Converts path separators to forward slash.
|
||||
*/
|
||||
export function normalizePath(filename: string): string;
|
||||
|
||||
/**
|
||||
* Constructs a RegExp that matches a value that has the specified prefix.
|
||||
* @param str the string to match.
|
||||
* @param flags flags for the RegExp.
|
||||
*/
|
||||
export function prefixRegex(str: string | string[], flags?: string): RegExp;
|
||||
|
||||
/**
|
||||
* Constructs a RegExp that matches a value that has the specified suffix.
|
||||
* @param str the string to match.
|
||||
* @param flags flags for the RegExp.
|
||||
*/
|
||||
export function suffixRegex(str: string | string[], flags?: string): RegExp;
|
||||
|
||||
export type AddExtension = typeof addExtension;
|
||||
export type AttachScopes = typeof attachScopes;
|
||||
export type CreateFilter = typeof createFilter;
|
||||
export type ExactRegex = typeof exactRegex;
|
||||
export type ExtractAssignedNames = typeof extractAssignedNames;
|
||||
export type MakeLegalIdentifier = typeof makeLegalIdentifier;
|
||||
export type NormalizePath = typeof normalizePath;
|
||||
export type DataToEsm = typeof dataToEsm;
|
||||
export type PrefixRegex = typeof prefixRegex;
|
||||
export type SuffixRegex = typeof suffixRegex;
|
||||
|
||||
declare const defaultExport: {
|
||||
addExtension: AddExtension;
|
||||
attachScopes: AttachScopes;
|
||||
createFilter: CreateFilter;
|
||||
dataToEsm: DataToEsm;
|
||||
exactRegex: ExactRegex;
|
||||
extractAssignedNames: ExtractAssignedNames;
|
||||
makeLegalIdentifier: MakeLegalIdentifier;
|
||||
normalizePath: NormalizePath;
|
||||
prefixRegex: PrefixRegex;
|
||||
suffixRegex: SuffixRegex;
|
||||
};
|
||||
export default defaultExport;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
# `@rollup/rollup-darwin-x64`
|
||||
|
||||
This is the **x86_64-apple-darwin** binary for `rollup`
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "@rollup/rollup-darwin-x64",
|
||||
"version": "4.62.4",
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"files": [
|
||||
"rollup.darwin-x64.node"
|
||||
],
|
||||
"description": "Native bindings for Rollup",
|
||||
"author": "Lukas Taegert-Atkinson",
|
||||
"homepage": "https://rollupjs.org/",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/rollup/rollup.git"
|
||||
},
|
||||
"main": "./rollup.darwin-x64.node"
|
||||
}
|
||||
BIN
Binary file not shown.
Reference in New Issue
Block a user