Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
grunt-webpack-zombie-edition
Advanced tools
fork of grunt-webpack for 1.x that strives to keep everything cached and in memory
Use webpack with grunt.
Install this grunt plugin next to your project's Gruntfile.js with: npm install grunt-webpack --save-dev
Then add this line to your project's Gruntfile.js
gruntfile:
grunt.loadNpmTasks('grunt-webpack');
There are two tasks available
webpack
.webpack-dev-server
: see webpack-dev-server doc for available options.webpack: {
someName: {
// webpack options
entry: "./client/lib/index.js",
output: {
path: "asserts/",
filename: "[hash].js",
},
stats: {
// Configure the console output
colors: false,
modules: true,
reasons: true
},
// stats: false disables the stats output
storeStatsTo: "xyz", // writes the status to a variable named xyz
// you may use it later in grunt i.e. <%= xyz.hash %>
progress: false, // Don't show progress
// Defaults to true
failOnError: false, // don't report error to grunt if webpack find errors
// Use this if webpack errors are tolerable and grunt should continue
watch: true, // use webpacks watcher
// You need to keep the grunt process alive
watchOptions: {
aggregateTimeout: 500,
poll: true
},
// Use this when you need to fallback to poll based watching (webpack 1.9.1+ only)
keepalive: true, // don't finish the grunt task
// Use this in combination with the watch option
inline: true, // embed the webpack-dev-server runtime into the bundle
// Defaults to false
hot: true, // adds the HotModuleReplacementPlugin and switch the server to hot mode
// Use this in combination with the inline option
},
anotherName: {...}
}
grunt-webpack
uses the webpack options.
Copyright (c) 2012-2017 Tobias Koppers @sokra Copyright (c) 2017- Yaroslav Serhieiev @noomorph
Licensed under the MIT license.
FAQs
fork of grunt-webpack for 1.x that strives to keep everything cached and in memory
The npm package grunt-webpack-zombie-edition receives a total of 1 weekly downloads. As such, grunt-webpack-zombie-edition popularity was classified as not popular.
We found that grunt-webpack-zombie-edition 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.