closure-builder v2.3.8
Closure Builder - Simplified Closure Build System
A Closure build system to easily compile Closure JavaScript files, Closure Template files and Closure Stylesheet files without the need to configure anything. The Google Closure library will be included automatically if needed.
This build system could be also used for normal css, js, nodejs and static files as well.
- Installation
- Requirements
- Basic Usage
- Options
- Function callback
- Compile Closure JavaScript files
- Compile Closure Javascript files with soy files
- Compile Closure Javascript files with externs
- Compile Closure JavaScript files over remote service
- Compile Closure Template (.soy) files
- Compile Closure Stylesheet (.gss) files
- Compile JavaScript files
- Compile Node.js files
- Compile Rollup files (experimental)
- Compile css files
- Copy Resources
- Copy Remote Resources
- Convert Markdown (.md) to .html file
- Development
- Disclaimer
- Author
- License
Installation
Use NPM using npm install closure-builder or fork, clone download the source
on GitHub to get the latest version.
Requirements
To be able to use all available features and options, please make sure to install the Java Runtime Environment (JRE).
Basic Usage
var closureBuilder = require('closure-builder');
var glob = closureBuilder.globSupport();
closureBuilder.build({
name: 'goog.namespace',
srcs: glob([
'src/**/*.js',
'soy/**/*.soy'
]),
deps: [...],
out: 'genfiles/whatever.js'
});Options
All of the options will be defined inside the BUILD rule. But there is not limit of BUILD rules which could be setup for your needs.
Required
These basic required options for compiling are:
nameClosure namespace to compiler or unique name of your build rulesrcsList of (Soy, CSS, Closure or JavaScript files) which should be compiledoutOutput path / output file for the compiled Soy, Closure or JavaScript files
For copying files the required options are:
nameUnique name of your build ruleresourcesResource files which will be copied to the output folderoutOutput path / output file for the compiled Soy, Closure or JavaScript files
Additional
These options could be used for adding additional information.
typeOverwrites the automatic type detectionout_source_mapStores possible source map to the given output fileappendAppend the given text to the final outputprependPrepend the given text to the final outputreplaceReplace the given text on the final output
Closure compiler options
depsDependencies like additional closure files or additional file for the compilerentry_pointClosure namespace if not already defined undernameexternsAdditional JavaScript externs for the compilerlicenseAdditional license header file which will be include as header to the compiled filesremote_serviceIf true use online remote services instead of local tools
Verbose
warnIf false disable all warning messagesdebugIf true display additional debug informationstraceIf true display additional trace informations
Options
The following options are available for the closure and soy compiler:
options.exclude_testIf true _test. files will be excludedoptions.soyAdditional settings for the Soy compileroptions.closureAdditional settings for the Closure compileroptions.closure.use_closure_libraryIf true bundled closure library will be included. If a path, the defined path will be included instead.
closureBuilder.build({
srcs: glob([
'src/**/*.js',
'soy/**/*.soy',
]),
options: {
closure: {
define: ['goog.DEBUG=true', 'goog.dom.ASSUME_STANDARDS_MODE=true']
}
}
}Closure compiler warnings
To adjust the Closure compiler warnings, you could use
options.closure.jscomp_... or the shortcut jscomp_....
jscomp_errorList of compiler checks which produce an error message.jscomp_warningList of compiler checks which produce an warning message.jscomp_offList of compiler checks which should be disabled.
See full list of compiler checks
closureBuilder.build({
name: 'Closure compiler warnings',
options: {
closure : {
jscomp_error: ['deprecated', 'extraRequire',
'missingProvide', 'missingRequire', 'newCheckTypes']
}
},
...
}Not implemented yet
The following options are partially implemented and should not be used:
datacompresstype
Function Callback
For performance reasons the tasks will be executed asynchronous whenever it is possible.
If you need to know exactly if a tasks has finished you could add a callback function as well.
var closureBuilder = require('closure-builder');
var callbackExample = function(errors, warnings, files, results) {
...
};
closureBuilder.build({
...
}, callbackExample.bind(this));The callback will be called with the following parameters:
errorsErrors if anywarningsWarnings if anyfilesSingle output file or list of output files if anyresultsResult if any
Example build configurations
These example shows the basic usage for the different file types. You could define as many build rules you want. Please keep in mind to add the needed require before like:
var closureBuilder = require('closure-builder');
var glob = closureBuilder.globSupport();
closureBuilder.build({
...
});Compile Closure JavaScript files
Compiling Closure JavaScript files for the given namespace to an single JavaScript file.
closureBuilder.build({
name: 'goog.namespace',
srcs: glob([
'src/js/*.js'
]),
out: 'genfiles/merged-and-minified.js'
});Compile Closure JavaScript files with Soy files
Compiling Closure JavaScript files and associated Soy files to a single javascript file.
closureBuilder.build({
name: 'goog.namespace',
srcs: glob([
'src/**/*.js',
'soy/**/*.soy'
]),
deps: [...],
out: 'genfiles/compiled.js'
});Compile Closure JavaScript files with externs
Compiling Closure JavaScript files with JavaScript externs. javascript file.
closureBuilder.build({
name: 'goog.namespace',
srcs: glob([
'src/**/*.js',
]),
externs: [
'src/externs/global.js'
],
out: 'genfiles/compiled.js'
});Compile Closure JavaScript files over remote service
Compiling Closure JavaScript files with the remote service to a single javascript file. Please keep in mind that the remote service is not supporting all features and options of the closure compiler.
closureBuilder.build({
name: 'goog.namespace',
srcs: glob([
'src/**/*.js',
]),
remote_service: true,
deps: [...],
out: 'genfiles/compiled.js'
});Compile Closure Template files
Compiling Soy files into Soy JavaScript files to an targeted directory.
closureBuilder.build({
name: 'soy_files',
srcs: glob([
'soy/**/*.soy'
]),
out: 'genfiles/compiled_soy_files/'
});Compile Closure Stylesheet files
Compiling closure stylesheet files into css files to an targeted directory.
closureBuilder.build({
name: 'gss_files',
srcs: glob([
'css/**/*.gss'
]),
out: 'genfiles/compiled.css'
});Compile JavaScript files
Combine several JavaScript files to a single JavaScript file.
closureBuilder.build({
name: 'javascript_files',
srcs: glob([
'src/js/*.js'
]),
out: 'genfiles/merged-and-minified.js'
});Compile Node.js files
Combine node.js JavaScript files with browserify to a single JavaScript bundle.
closureBuilder.build({
name: 'node_bundle_files',
srcs: glob([
'src/js/node_file.js'
]),
out: 'genfiles/node_bundle.js'
});Compile Rollup files
Combine JavaScript files with rollup to a single JavaScript bundle.
closureBuilder.build({
name: 'module_name',
format: 'umd',
srcs: 'src/js/entry_file.js',
out: 'genfiles/rollup_bundle.js'
});Compile CSS files
Combine and minified several CSS files to a single CSS file.
closureBuilder.build({
name: 'css_files',
srcs: glob([
'src/css/*.css'
]),
out: 'genfiles/merged-and-minified.css'
});Copy resources
Copy static resources from the different location to the target directory.
closureBuilder.build({
name: 'static_resources',
resources: glob([
'static/css/*.css',
'static/htm/*.htm',
'static/html/*.html',
'static/jpg/*.jpg',
'static/gif/*.gif',
'static/png/*.png',
'static/xml/*.xml'
]),
out: 'genfiles/static-folder/'
});Copy remote resources
Copy resources from an remote location to the target directory.
closureBuilder.build({
name: 'static_resources',
resources: [
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.js',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.html',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.jpg',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.gif',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.png',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.xml',
'https://raw.githubusercontent.com/google/closure-builder/master/test_files/resources/file.css'
],
out: 'genfiles/static-folder/'
});Convert Markdown (.md) to .html file
Convert markdown (.md) to .html file.
closureBuilder.build({
name: 'md_file',
markdown: [
'README.md'
],
out: 'genfiles/'
});Best practise
For a better overview, you could split your build rules to several files. They could be placed in an "build" folder or something like this. Example: https://github.com/google/coding-with-chrome/tree/master/build
This allows you to rebuild only some of the files if needed.
Example package.json:
"scripts": {
"build": "npm run build-static-files && npm run build-remote-files && npm run build-extra-files && npm run build-cwc-files",
"rebuild": "npm run build-static-files && npm run build-cwc-files",
"build-static-files": "node build/static_files.js",
"build-remote-files": "node build/remote_files.js",
"build-extra-files": "node build/extra_files.js",
"build-cwc-files": "node build/cwc_files.js",
},Development
There are some automated scripts which will help you for development on the closure-builder project.
Get the sources
Download the source files manual from GitHub or with git by running:
git clone --recursive git://github.com/google/closure-builder.gitInit / update submodules
In some cases you need to init and update the submodules manually by:
git submodule init
git submodule updateGet required packages
Enter the "closure-builder" directory and get the required packages by:
npm installUpdating dependencies
Before you start working, run npm run update to update the dependencies to
the latest package versions.
Code Style
Run npm run lint to make sure that your code is according the general style.
Testing
Tests could be performed with npm run test. Before the test runs it will
automatically run the linter to make sure that the code has no syntax errors.
Deploying
Add all your files and create your commit, but instead of using "git push"
directly please use npm run deploy instead.
It will automatically run some tests and increase the versions number by 0.0.1.
Disclaimer
This is not an official Google product.
Author
License
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
