![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.
cached-loader
Advanced tools
Adds persistent on-disk caching to webpack loaders
var path = require('path');
var combineLoaders = require('webpack-combine-loaders');
// some external config
var sassConfig = require('./sassConfig');
// some environmental config
var opts = {
rootDir: process.cwd(),
cssSourcemaps: Boolean(process.env.NODE_ENV !== 'production'),
};
module.exports = {
module: {
loaders: [
{
test: /\.scss$/,
loader: combineLoaders([
{
loader: 'cached-loader',
query: {
cacheDirectory: path.join(opts.rootDir, 'tmp/cache/cached-loader'),
cacheIdentifier: JSON.stringify(opts) + JSON.stringify(sassConfig),
},
},
{
loader: 'style-loader',
},
{
loader: 'css-loader',
query: {
sourceMap: opts.cssSourcemaps,
},
},
{
loader: 'postcss-loader',
},
{
loader: 'sass-loader',
query: Object.assign({}, sassConfig, {
sourceMap: opts.cssSourcemaps,
}),
},
]),
},
],
},
};
Now webpack should be faster from a cold start.
FAQs
Adds persistent on-disk caching to webpack loaders
The npm package cached-loader receives a total of 6 weekly downloads. As such, cached-loader popularity was classified as not popular.
We found that cached-loader 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.