Coder Social home page Coder Social logo

rename-webpack-plugin's People

Contributors

dcatfly avatar iorlandini avatar

Stargazers

 avatar  avatar

Watchers

 avatar

rename-webpack-plugin's Issues

Error with newer versions of node/webpack

Recently I've upgraded my angular, typescript, webpack and node. I assume the issue is node but I'm not sure. Something broke this plugin so I'm getting this error:

An unhandled exception occurred: Cannot add property main.js, object is not extensible

the fix is to make a copy of "assets" array because the original object is not extensible:

`module.exports = class Rename {
constructor(options) {
this.options = { ...options };
}

apply(compiler) {
compiler.hooks.emit.tap('Rename.emit', compilation => {
const { assets } = compilation;
const { originNameReg, targetName } = this.options;
const originFiles = Object.keys(assets).filter(fileName =>
new RegExp(originNameReg).test(fileName)
);

  originFiles.forEach(fileName => {
    let assetsCopy = Object.assign([], assets);
    assetsCopy[fileName.replace(originNameReg, targetName)] = assetsCopy[fileName];
    delete assetsCopy[fileName];
  });
});

}
};`

Installation error with webpack 5

I'm getting "unable to resolve dependency tree" error while installing this package with webpack >= 5

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/webpack
npm ERR!   dev webpack@"^5" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.0.0" from [email protected]
npm ERR! node_modules/rename-webpack-plugin
npm ERR!   dev rename-webpack-plugin@"*" from the root project

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.