![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
additional-compile-webpack-plugin
Advanced tools
Kick off another webpack compilation after the main one has finished
Yo dawg! I put a compiler in your compiler, so you can compile
whileafter you compile!
This plugin enables you to start another compile step with access to the output of the main compilation.
For example, if your current webpack
setup generates dist/lib.js
, with this
plugin you can configure a child compilation step that executes after
dist/lib.js
has been built, so you can require()
it.
The plugin expects a webpack
configuration object during initialization.
Currently only entry
, output
and plugins
are supported. In addition to
that, the child compilation inherits the configuration of the main compilation.
Example:
const PostCompilePlugin = require( 'post-compile-webpack-plugin' );
const path = require( 'path' );
module.exports = {
entry: {
lib: './index.js'
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js'
},
plugins: [
new PostCompilePlugin({
entry: {
example1: './examples/example1.js',
example2: './examples/example2.js'
}
})
]
};
FAQs
Kick off another webpack compilation after the main one has finished
The npm package additional-compile-webpack-plugin receives a total of 0 weekly downloads. As such, additional-compile-webpack-plugin popularity was classified as not popular.
We found that additional-compile-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.