2

I'm using UmiJs framework , In its build script it uglify all the files , how can I prevent it from uglify them ?

URL87
  • 10,667
  • 35
  • 107
  • 174

2 Answers2

1

add ! prevent UmiJs from uglify

'!js/UmiJs.js '

Mohammad Ali Rony
  • 4,695
  • 3
  • 19
  • 33
1

Set the environment variable:

COMPRESS=none

The docs mention this var but don't specifically mention uglify/minify and the detail of what's involved. Here's the source code where it's used.

DDD
  • 1,462
  • 15
  • 19