For questions please post on Stack Overflow and use the 'webpack' tag (http://stackoverflow.com/tags/webpack).
vankop on support-import-meta-env
support import.meta.env (compare)
dependabot[bot] on npm_and_yarn
Bump memfs from 3.4.0 to 3.4.3 … (compare)
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
Bump @babel/core from 7.17.0 to… (compare)
dependabot[bot] on npm_and_yarn
_0xef14
So I didn't think that they used obfuscator. Do you think we can tell obfuscator to not convert anything like _0xef14
as browser sometime things that this is virus code.
a
, b
, c
, etc. What you shared could theoretically label itself a minifier as the lines sometimes are blurred.npm install
hi all, i'm getting a one time warning after upgrading some dependencies, not seeing any issues for it as its a warning, and the app is working fine, but wondering what this means?
[webpack.cache.PackFileCacheStrategy/webpack.FileSystemInfo] Resolving 'lodash/package.json' in /Users/kelly/tock/admin/clowncar/node_modules/babel-plugin-lodash/lib for build dependencies doesn't lead to expected result '/Users/kelly/tock/admin/clowncar/node_modules/lodash/package.json', but to '/Users/kelly/tock/admin/clowncar/node_modules/babel-plugin-lodash/node_modules/lodash/package.json' instead. Resolving dependencies are ignored for this path.
I updated babel-loader with a minor bump, and webpack as well, and babel-core,
babel-core - 7.13.15
babel-loader - 8.2.2
webpack - 5.31.0
after I get this, stop, then start it, it is no longer shown, guessing because its cached.
I'm having a problem with webpack.DefinePlugin. It's not defining anything.
Webpack version: 5.31.2plugins: [
new webpack.DefinePlugin({ ASSET_PATH: "testtest" }),
...
]
Then in my webapp, I check to see if window.ASSET_PATH is defined. It's not. Any clue what's going on? Is DefinePlugin broken in webpack 5?
JSON.stringify
it like so: new webpack.DefinePlugin({ "window.ASSET_PATH": JSON.stringify("testtest") })
-- you may be mixing up the error with texttext
being a literal and DefinePlugin "not working"