source: Dev/trunk/src/client/util/buildscripts/jslib/checkBuildSize.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 406 bytes
Line 
1//assumes cwd of util/buildscripts
2
3//TODO: could take profile and compression option as args
4
5load("jslib/logger.js");
6load("jslib/fileUtil.js");
7load("jslib/buildUtil.js");
8
9var result = buildUtil.makeDojoJs(buildUtil.loadDependencyList(buildUtil.evalProfile("profiles/base.profile.js")), "0.0.0");
10
11var layer0 = buildUtil.optimizeJs(null, result[0].contents, null, "shrinksafe");
12print(layer0.length);
13
Note: See TracBrowser for help on using the repository browser.