0

I have some problems using UglifyJS.
When i am using uglifyjs with this command:
uglifyjs -o live_ugly.js --compress --mangle-props 1 --mangle -r "$,require,exports" live.js

I gives me an error : Cannot read property 'source' of undefined

The code for this line is : new RegExp(this.Qd.source + "|" + /\d{1,2}/.source)

The code before uglify is : new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source

I have ReactJS code in it too. The source code i am trying to mangle went through webpack before.

What am i doing wrong here?

Razvan
  • 670
  • 3
  • 9
  • 23

1 Answers1

0

Fixed it by adding the compress parameter to UglifyJsPlugin

Razvan
  • 670
  • 3
  • 9
  • 23