control-freak-ide/server/nodejs/util/buildscripts/jslib/checkBuildSize.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

14 lines
406 B
JavaScript

//assumes cwd of util/buildscripts
//TODO: could take profile and compression option as args
load("jslib/logger.js");
load("jslib/fileUtil.js");
load("jslib/buildUtil.js");
var result = buildUtil.makeDojoJs(buildUtil.loadDependencyList(buildUtil.evalProfile("profiles/base.profile.js")), "0.0.0");
var layer0 = buildUtil.optimizeJs(null, result[0].contents, null, "shrinksafe");
print(layer0.length);