2.14.0 • Published 7 months ago

@wordpress/library-export-default-webpack-plugin v2.14.0

Weekly downloads
741
License
GPL-2.0-or-later
Repository
github
Last release
7 months ago

Library Export Default Webpack Plugin

Webpack plugin for exporting default property for selected libraries which use ES6 Modules. Implementation is based on the Webpack's core plugin ExportPropertyMainTemplatePlugin. The only difference is that this plugin allows to whitelist all entry point names where the default export of your entry point will be assigned to the library target.

Note: This plugin requires Webpack 4.0 and newer, and is not compatible with older versions.

Installation

Install the module

npm install @wordpress/library-export-default-webpack-plugin --save

Usage

Construct an instance of LibraryExportDefaultPlugin in your Webpack configurations plugins entry, passing an array where values correspond to the entry point name.

The following example selects boo entry point to be updated by the plugin. When compiled, the built file will ensure that default value exported for the chunk will be assigned to the global variable wp.boo. foo chunk will remain untouched.

const LibraryExportDefaultPlugin = require( '@wordpress/library-export-default-webpack-plugin' );

module.exports = {
	// ...

	entry: {
		boo: './packages/boo',
		foo: './packages/foo',
	},
	
	output: {
		filename: 'build/[name].js',
		path: __dirname,
		library: [ 'wp', '[name]' ],
		libraryTarget: 'this',
	},

	plugins: [
		new LibraryExportDefaultPlugin( [ 'boo' ] ),
	],
}

2.12.2

7 months ago

2.14.0

1 year ago

2.11.0

1 year ago

2.4.0

2 years ago

2.6.0

2 years ago

2.8.0

1 year ago

2.13.0

1 year ago

2.12.0

1 year ago

2.5.0

2 years ago

2.3.2

2 years ago

2.10.0

1 year ago

2.7.0

2 years ago

2.3.3

2 years ago

2.9.0

1 year ago

2.12.1

1 year ago

2.3.0

2 years ago

2.3.1

2 years ago

2.2.0

3 years ago

2.1.0

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0-next.0

3 years ago

2.0.0

3 years ago

1.9.0

4 years ago

1.8.0

4 years ago

1.7.0

4 years ago

1.6.1-rc.0

4 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.5

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

1.0.0-alpha.3

6 years ago

1.0.0-alpha.2

6 years ago

1.0.0-alpha.1

6 years ago

1.0.0-alpha.0

6 years ago