keystonejs / keystone-classic

Node.js CMS and web app framework
http://v4.keystonejs.com
MIT License
14.63k stars 2.2k forks source link

Keystone admin JS not minified #2825

Open josephg opened 8 years ago

josephg commented 8 years ago

http://localhost:3000/keystone/js/index.js is not minified.

$ NODE_ENV=production node server.js 
$ curl http://localhost:3000/keystone/js/index.js | wc -c
 1312064 (1.3M)
$ curl http://localhost:3000/keystone/js/index.js | uglify -cm | wc
  472863 (473K)
josephg commented 8 years ago

And why is it so big? Isn't it supposed to not include the common packages? (Field types is also huge - 749k)

$ curl http://localhost:3000/keystone/js/fields.js | wc -c
  749051
VinayaSathyanarayana commented 7 years ago

Any plans to minify the javascript files?