Giter Site home page Giter Site logo

Comments (10)

alexander-akait avatar alexander-akait commented on April 27, 2024 1

@anothertempore This change was due another things, but yes, it affected your code, but BannerPlugin was not design for such purposes like code injection (but yes, it is possible, that is why I reccomend to use footre for such purposes), we can't rollback use strict changed, because it will return some problems again

from webpack.

alexander-akait avatar alexander-akait commented on April 27, 2024

When the output code is ESM, it will have "use strict" in the very first line, this is expected.

You don't need "use strict" when your output is ESM...

from webpack.

anothertempore avatar anothertempore commented on April 27, 2024

@alexander-akait Sorry I just updated to Non-ESM code, seems like get the same behaviour. Could you please check it again, Thanks!

https://github.com/anothertempore/webpack-banner-use-strict/tree/main

from webpack.

ak47me avatar ak47me commented on April 27, 2024

hey I cloned the code and tried out the steps and I see that "use strict" is infact on the 2 nd line , could you please elaborate more as to what is the main bug. Thank you . I am a student wanting to help contribute as part of the google summer of code

from webpack.

alexander-akait avatar alexander-akait commented on April 27, 2024

I want to say it is not a bug, because BannerPlugin is not for including acustom code, but yes, you can use this for it and in some cases it will work, #13842 is not related to your problem, we don't remove/generate "use strict", it is from your source code, I recommend to use:

new webpack.BannerPlugin({
  banner: "const hello = 'fromBannerPlugin';",
  footer: true,
  raw: true,
  include: /\.js$/,
}),

for code

from webpack.

anothertempore avatar anothertempore commented on April 27, 2024

@alexander-akait Thanks for your suggestion. I want to double check if I understand this correctly.

I tried webpack v5.46.0, which is before #13842, the bundled code is:

const hello = 'fromBannerPlugin';
(self["webpackChunkwebpack_banner_use_strict"] = self["webpackChunkwebpack_banner_use_strict"] || []).push([[931],{

/***/ 463:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */   "all": () => (/* binding */ every$1),
...

The use strict is inside of function block.


However the webpack after v.5.47.0, which is after #13842, the bundled code changed to:

const hello = 'fromBannerPlugin';
"use strict";
(self["webpackChunkwebpack_banner_use_strict"] = self["webpackChunkwebpack_banner_use_strict"] || []).push([[931],{

/***/ 463:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */   "all": () => (/* binding */ every$1),

The use strict is at the top of the file.


No need to modify any source code can notice the difference, so I am wondering which part is related to the source code?

from webpack.

aman8218 avatar aman8218 commented on April 27, 2024

hey @anothertempore there is an issue while cloning this repository can you help me with this:
Screenshot 2024-03-19 222318

from webpack.

urizennnn avatar urizennnn commented on April 27, 2024

hey @anothertempore there is an issue while cloning this repository can you help me with this: Screenshot 2024-03-19 222318

that is a network issue consider downloading it as a zip file

from webpack.

alexander-akait avatar alexander-akait commented on April 27, 2024

Anyway, maybe we can implement options.afterDirectives, but it will cost perfomance because we will need recalculate source maps

from webpack.

aman8218 avatar aman8218 commented on April 27, 2024

from webpack.

Related Issues (20)

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.