Skip to content

Commit f6a0771

Browse files
committed
Changed processAssets stage to prevent missing generation of the source maps
1 parent bb6d362 commit f6a0771

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-obfuscator",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "javascript-obfuscator plugin for Webpack@5",
55
"keywords": [
66
"obfuscator",

plugin/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class WebpackObfuscatorPlugin {
5353
compilation.hooks.processAssets.tap(
5454
{
5555
name: 'WebpackObfuscator',
56-
stage: Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE
56+
stage: Compilation.PROCESS_ASSETS_STAGE_DEV_TOOLING
5757
},
5858
(assets) => {
5959
let identifiersPrefixCounter: number = 0;

0 commit comments

Comments
 (0)