🍣 A rollup plugin which automatically converts dependencies bundled with WordPress to external dependencies. This is inspired by the WordPress dependency-extraction-webpack-plugin from wp-scripts, but for those of us who prefer rollup.
Note:
This plugin does not support saving external dependencies to a php file for block registration. It may be considered in the future.
npm install rollup-plugin-wp-resolve --save-dev
import wpResolve from 'rollup-plugin-wp-resolve';
export default {
input: 'src/index.js',
output: {
dir: 'output',
format: 'iife'
},
plugins: [
wpResolve(),
]
};
import { ToggleControl } from '@wordpress/components';
import { useSelect } from '@wordpress/data';
import { useBlockProps } from '@wordpress/block-editor';
import ServerSideRender from '@wordpress/server-side-render';
will resolve to:
- wp.components.ToggleControl
- wp.data.useSelect
- wp.blockEditor.useBlockProps
- wp.serverSideRender
This will also convert the following wordpress bundled dependencies automatically:
import jQuery from 'jquery';
import lodash from 'lodash';
import lodash-es from 'lodash-es';
import moment from 'moment';
import ReactDOM from 'react-dom';
import React from 'react';
- Remove commented out code
- Fix a bug where some wp modules would resolve incorrectly because of the camelcase algorithm (e.g.
import { __ } from @wordpress/i18n
would be mapped towp.i18N
and notwp.i18n
) - Remove camelcase as a dependency since it was no longer used
- Initial Release