An npm package that contains the closure tools with a small API that provides the path to the actual files.
Install...
npm install closure-tools --save-deps
Require...
var closureTools = require('closure-tools');
Get the path:
var builderPath = closureTools.getPath('build/closurebuilder.py');
console.log(builderPath);
// prints:
// node_modules/closure-tools/closure-bin/build/closurebuilder.py
Get the relative path to your package's root, for the defined filename
.
The
filename
can have any value from the closure bin folder (see below).
var closureTools = require('closure-tools'),
exec = require('require('child_process').exec');
/* ... */
// prepare the closurebuilder command
var command = closureTools.getPath('build/closurebuilder.py') + ' ' + buildOptions;
// run the closureTools command
exec( command, cb );
This is the current breakout of the Google Closure's Tools folder, and in effect all the possible values the getPath()
method will make sense:
build/closurebuilder.py
build/depstree_test.py
build/source_test.py
build/depstree.py
build/depswriter.py
build/source.py
build/treescan.py
build/jscompiler.py
calcdeps.py
scopify.py
- v0.1.4, 5 Nov 2013 Updated closure binaries to latest.