Socket
Socket
Sign inDemoInstall

google-closure-compiler

Package Overview
Dependencies
Maintainers
1
Versions
1917
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-closure-compiler - npm Package Compare versions

Comparing version 20151015.0.0 to 20151015.1.0

index.js

4

contrib/externs/angular-1.4-mocks.js

@@ -244,1 +244,5 @@ /*

angular.mock.animate.prototype.flush = function() {};
/** @typedef {function((!Function|string), !Object, Object=): !Object} */
angular.mock.$controller;

27

contrib/externs/angular-1.4.js

@@ -195,2 +195,8 @@ /*

/**
* @param {Object} dest
* @param {...Object} srcs
*/
angular.merge = function(dest, srcs) {};
angular.mock = {};

@@ -1197,5 +1203,5 @@

/**
* @typedef {function(string): ?angular.$cacheFactory.Cache}
* @return {!angular.$cacheFactory.Cache|undefined}
*/
angular.$cacheFactory.get;
angular.$cacheFactory.prototype.get = function() {};

@@ -2113,13 +2119,4 @@ /** @typedef {{capacity: (number|undefined)}} */

/**
* @typedef {{
* otherwise:
* function(
* (string|!angular.$routeProvider.Params)): !angular.$routeProvider,
* when:
* function(
* string, angular.$routeProvider.Params): !angular.$routeProvider
* }}
*/
angular.$routeProvider;
/** @constructor */
angular.$routeProvider = function() {};

@@ -2130,3 +2127,3 @@ /**

*/
angular.$routeProvider.otherwise = function(params) {};
angular.$routeProvider.prototype.otherwise = function(params) {};

@@ -2138,3 +2135,3 @@ /**

*/
angular.$routeProvider.when = function(path, route) {};
angular.$routeProvider.prototype.when = function(path, route) {};

@@ -2141,0 +2138,0 @@ /**

@@ -249,22 +249,54 @@ /*

/******************************************************************************
* $mdThemingProvider Service
* $mdThemingProvider
*****************************************************************************/
/** @constructor */
md.$mdThemingProvider = function() {};
/** @param {boolean} alwaysWatch */
md.$mdThemingProvider.prototype.alwaysWatchTheme = function(alwaysWatch) {};
/** @param {boolean} onDemand */
md.$mdThemingProvider.prototype.generateThemesOnDemand = function(onDemand) {};
/**
* @typedef {{
* alwaysWatchTheme: function(boolean),
* definePalette:
* function(string, !Object<string,string>) : md.$mdThemingProvider,
* extendPalette:
* function(string, !Object<string,string>) : !Object<string,string>,
* setDefaultTheme: function(string),
* theme: function(string,string=) : md.$mdThemingProvider.Theme
* }}
* @param {string} name
* @param {!Object<string,string>} palette
* @return {md.$mdThemingProvider}
*/
md.$mdThemingProvider;
md.$mdThemingProvider.prototype.definePalette = function(name, palette) {};
/*****************************************************************************/
/**
* @param {string} name
* @param {!Object<string,string>} extension
* @return {!Object<string,string>}
*/
md.$mdThemingProvider.prototype.extendPalette = function(name, extension) {};
/** @param {string} name */
md.$mdThemingProvider.prototype.setDefaultTheme = function(name) {};
/**
* @param {string} name
* @param {string=} opt_parentTheme
* @return {md.$mdThemingProvider.Theme}
*/
md.$mdThemingProvider.prototype.theme = function(name, opt_parentTheme) {};
/******************************************************************************
* $mdTheming service
*****************************************************************************/
/** @constructor */
md.$mdTheming = function() {};
/** @param {string} name */
md.$mdTheming.prototype.generateTheme = function(name) {}
/******************************************************************************/
/**
* @param {string} name
* @constructor

@@ -316,13 +348,3 @@ */

/*****************************************************************************/
/**
* @param {string} themeName
* @param {string=} opt_inheritFrom
* @return {md.$mdThemingProvider.Theme}
*/
md.$mdThemingProvider.prototype.theme = function(themeName, opt_inheritFrom) {};
/******************************************************************************

@@ -369,1 +391,100 @@ * $mdIconProvider Service

md.$mdIconProvider.prototype.defaultFontSet = function(name) {};
/******************************************************************************
* $mdDateLocaleProvider
*****************************************************************************/
/** @constructor */
md.$mdDateLocaleProvider = function() {};
/** @type {Array<string>} */
md.$mdDateLocaleProvider.prototype.months = [];
/** @type {Array<string>} */
md.$mdDateLocaleProvider.prototype.shortMonths = [];
/** @type {Array<string>} */
md.$mdDateLocaleProvider.prototype.days = [];
/** @type {Array<string>} */
md.$mdDateLocaleProvider.prototype.shortDays = [];
/** @type {number} */
md.$mdDateLocaleProvider.prototype.firstDayOfWeek = 1;
/** @type {Array<string|number>} */
md.$mdDateLocaleProvider.prototype.dates = [];
/** @type {string} */
md.$mdDateLocaleProvider.prototype.msgCalendar = '';
/** @type {string} */
md.$mdDateLocaleProvider.prototype.msgOpenCalendar = '';
// The functions on $mdDateLocaleProvider are defined as fields because
// they are meant to be directly set by consuming code.
/** @type {function(string): Date} */
md.$mdDateLocaleProvider.prototype.parseDate = function(dateString) {};
/** @type {function(Date): string} */
md.$mdDateLocaleProvider.prototype.formatDate = function(date) {};
/** @type {function(Date): string} */
md.$mdDateLocaleProvider.prototype.monthHeaderFormatter = function(date) {};
/** @type {function(number): string} */
md.$mdDateLocaleProvider.prototype.weekNumberFormatter = function(weekNum) {};
/** @type {function(Date): string} */
md.$mdDateLocaleProvider.prototype.longDateFormatter = function(date) {};
/******************************************************************************
* $mdGestureProvider
*****************************************************************************/
/** @constructor */
md.$mdGestureProvider = function() {};
/**
* @return {boolean}
*/
md.$mdGestureProvider.prototype.skipClickHijack = function() {};
/******************************************************************************
* VirtualRepeatContainerController
*****************************************************************************/
/** @constructor */
md.VirtualRepeatContainerController = function() {};
/** @return {boolean} */
md.VirtualRepeatContainerController.prototype.isHorizontal = function() {};
/** @return {number} */
md.VirtualRepeatContainerController.prototype.getSize = function() {};
/** @return {number} */
md.VirtualRepeatContainerController.prototype.getScrollSize = function() {};
/** @return {number} */
md.VirtualRepeatContainerController.prototype.getScrollOffset = function() {};
/** @param {number} position */
md.VirtualRepeatContainerController.prototype.scrollTo = function(position) {};
md.VirtualRepeatContainerController.prototype.resetScroll = function() {};
/******************************************************************************
* VirtualRepeatController
*****************************************************************************/
/** @constructor */
md.VirtualRepeatController = function() {};
/** @return {?number} */
md.VirtualRepeatController.prototype.getItemSize = function() {};

@@ -1606,7 +1606,7 @@ /*

/**
* @param {boolean=} includeMargin
* @return {number}
* @param {number|boolean=} arg1
* @return {number|!jQuery}
* @nosideeffects
*/
jQuery.prototype.outerHeight = function(includeMargin) {};
jQuery.prototype.outerHeight = function(arg1) {};

@@ -1613,0 +1613,0 @@ /**

{
"name": "google-closure-compiler",
"version": "20151015.0.0",
"description": "A JavaScript checker and optimizer",
"version": "20151015.1.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
"repository": {
"type": "git",
"url": "https://github.com/google/closure-compiler.git"
"url": "https://github.com/chadkillingsworth/closure-compiler-npm.git"
},
"publishConfig": {
"tag": "beta"
},
"keywords": [

@@ -14,6 +17,21 @@ "javascript",

"minifier",
"closure"
"closure",
"gulpplugin",
"gruntplugin"
],
"main": "package.json",
"author": "The Closure Compiler Authors",
"main": "index.js",
"contributors": [
{
"name": "Chad Killingsworth",
"email": "chadkillingsworth@gmail.com"
}
],
"files": [
"src/",
"compiler.jar",
"index.js",
"package.json",
"contrib/",
"README.md"
],
"license": "Apache-2.0",

@@ -23,3 +41,9 @@ "bugs": {

},
"homepage": "https://developers.google.com/closure/compiler/"
"homepage": "https://developers.google.com/closure/compiler/",
"dependencies": {
"chalk": "^1.0.0",
"gulp-util": "^3.0.7",
"through2": "^2.0.0",
"vinyl-sourcemaps-apply": "^0.2.0"
}
}

@@ -1,503 +0,281 @@

# [Google Closure Compiler](https://developers.google.com/closure/compiler/)
# google-closure-compiler
Check, compile, optimize and compress Javascript with Closure-Compiler
[![Build Status](https://travis-ci.org/google/closure-compiler.svg?branch=master)](https://travis-ci.org/google/closure-compiler)
This repository tracks issues related to the node publication and associated plugins.
Any bugs not related to the plugins themselves should be reported to the
[main repository](https://github.com/google/closure-compiler/).
The [Closure Compiler](https://developers.google.com/closure/compiler/) is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
## Getting Started
* [Download the latest version](http://dl.google.com/closure-compiler/compiler-latest.zip) ([Release details here](https://github.com/google/closure-compiler/wiki/Releases))
* [Download a specific version](https://github.com/google/closure-compiler/wiki/Binary-Downloads). Also available via:
- [Maven](https://github.com/google/closure-compiler/wiki/Maven)
- [NPM](https://www.npmjs.com/package/google-closure-compiler)
* See the [Google Developers Site](https://developers.google.com/closure/compiler/docs/gettingstarted_app) for documentation including instructions for running the compiler from the command line.
Closure-compiler requires java to be installed and in the path.
## Options for Getting Help
1. Post in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
2. Ask a question on [Stack Overflow](http://stackoverflow.com/questions/tagged/google-closure-compiler)
3. Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ)
If you are new to [Closure-Compiler](https://developers.google.com/closure/compiler/), make
sure to read and understand the
[compilation levels](https://developers.google.com/closure/compiler/docs/compilation_levels) as
the compiler works very differently depending on the compilation level selected.
## Building it Yourself
For help or questions with the compiler, the best resource is
[Stack Overflow](http://stackoverflow.com/questions/tagged/google-closure-compiler). Posts there
are monitored by multiple Closure Compiler team members.
Note: The Closure Compiler requires [Java 7 or higher](http://www.java.com/).
You may also post in the
[Closure Compiler Discuss Google Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss).
### Using [Maven](http://maven.apache.org/)
Please don't cross post to both Stackoverflow and Closure Compiler Discuss.
1. Download [Maven](http://maven.apache.org/download.cgi).
## Usage
The compiler package now includes build tool plugins for [Grunt](http://gruntjs.com/) and
[Gulp](http://gulpjs.com/).
2. Run `mvn -DskipTests` (omit the `-DskipTests` if you want to run all the
unit tests too).
### Installation
This will produce a jar file called `target/closure-compiler-1.0-SNAPSHOT.jar`.
### Using [Eclipse](http://www.eclipse.org/)
1. Download and open the [Eclipse IDE](http://www.eclipse.org/).
2. Navigate to ```File > New > Project ...``` and create a Java Project. Give
the project a name.
3. Select ```Create project from existing source``` and choose the root of the
checked-out source tree as the existing directory.
3. Navigate to the ```build.xml``` file. You will see all the build rules in
the Outline pane. Run the ```jar``` rule to build the compiler in
```build/compiler.jar```.
## Running
On the command line, at the root of this project, type
```
java -jar build/compiler.jar
npm install --save google-closure-compiler
```
This starts the compiler in interactive mode. Type
### Configuration
```javascript
var x = 17 + 25;
```
The compiler has a large number of flags. The best documentation for the flags can be found by
running the `--help` command of the compiler.jar found inside the
`node_modules/google-closure-compiler` folder:
then hit "Enter", then hit "Ctrl-Z" (on Windows) or "Ctrl-D" (on Mac or Linux)
and "Enter" again. The Compiler will respond:
```javascript
var x=42;
```
The Closure Compiler has many options for reading input from a file, writing
output to a file, checking your code, and running optimizations. To learn more,
type
```
java -jar compiler.jar --help
```
More detailed information about running the Closure Compiler is available in the
[documentation](http://code.google.com/closure/compiler/docs/gettingstarted_app.html).
### Specifying Options
## Compiling Multiple Scripts
Both the grunt and gulp tasks take options objects. The option parameters map directly to the
compiler flags without the leading '--' characters.
If you have multiple scripts, you should compile them all together with one
compile command.
Values are either strings or booleans. Options which have multiple values can be arrays.
```bash
java -jar compiler.jar --js_output_file=out.js in1.js in2.js in3.js ...
```js
{
js: ['/file-one.js', '/file-two.js'],
compilation_level: 'ADVANCED',
js_output_file: 'out.js',
debug: true
}
```
You can also use minimatch-style globs.
For advanced usages, the options may be specified as an array of strings. These values _include_
the "--" characters and are directly passed to the compiler in the order specified:
```bash
# Recursively include all js files in subdirs
java -jar compiler.jar --js_output_file=out.js 'src/**.js'
# Recursively include all js files in subdirs, exclusing test files.
# Use single-quotes, so that bash doesn't try to expand the '!'
java -jar compiler.jar --js_output_file=out.js 'src/**.js' '!**_test.js'
```js
[
'--js', '/file-one.js',
'--js', '/file-two.js',
'--compilation_level', 'ADVANCED',
'--js_output_file', 'out.js',
'--debug'
]
```
The Closure Compiler will concatenate the files in the order they're passed at
the command line.
When an array of flags is passed, the input files should not be specified via the build tools, but
rather as compilation flags directly.
If you're using globs or many files, you may start to run into
problems with managing dependencies between scripts. In this case, you should
use the [Closure Library](https://developers.google.com/closure/library/). It
contains functions for enforcing dependencies between scripts, and Closure Compiler
will re-order the inputs automatically.
### Using the Grunt Task
## How to Contribute
### Reporting a bug
1. First make sure that it is really a bug and not simply the way that Closure Compiler works (especially true for ADVANCED_OPTIMIZATIONS).
* Check the [official documentation](https://developers.google.com/closure/compiler/)
* Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ)
* Search on [Stack Overflow](http://stackoverflow.com/questions/tagged/google-closure-compiler) and in the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
2. If you still think you have found a bug, make sure someone hasn't already reported it. See the list of [known issues](https://github.com/google/closure-compiler/issues).
3. If it hasn't been reported yet, post a new issue. Make sure to add enough detail so that the bug can be recreated. The smaller the reproduction code, the better.
Include the plugin in your Gruntfile.js:
### Suggesting a Feature
1. Consult the [FAQ](https://github.com/google/closure-compiler/wiki/FAQ) to make sure that the behaviour you would like isn't specifically excluded (such as string inlining).
2. Make sure someone hasn't requested the same thing. See the list of [known issues](https://github.com/google/closure-compiler/issues).
3. Read up on [what type of feature requests are accepted](https://github.com/google/closure-compiler/wiki/FAQ#how-do-i-submit-a-feature-request-for-a-new-type-of-optimization).
4. Submit your reqest as an issue.
```js
require('google-closure-compiler').grunt(grunt);
// The load-grunt-tasks plugin won't automatically load closure-compiler
```
### Submitting patches
1. All contributors must sign a contributor license agreement (CLA).
A CLA basically says that you own the rights to any code you contribute,
and that you give us permission to use that code in Closure Compiler.
You maintain the copyright on that code.
If you own all the rights to your code, you can fill out an
[individual CLA](http://code.google.com/legal/individual-cla-v1.0.html).
If your employer has any rights to your code, then they also need to fill out
a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).
If you don't know if your employer has any rights to your code, you should
ask before signing anything.
By default, anyone with an @google.com email address already has a CLA
signed for them.
2. To make sure your changes are of the type that will be accepted, ask about your patch on the [Closure Compiler Discuss Group](https://groups.google.com/forum/#!forum/closure-compiler-discuss)
3. Fork the repository.
4. Make your changes.
5. Submit a pull request for your changes. A project developer will review your work and then merge your request into the project.
Task targets, files and options may be specified according to the grunt
[Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
## Closure Compiler License
#### Basic Configuration Example:
Copyright 2009 The Closure Compiler Authors.
```js
// Project configuration.
grunt.initConfig({
'closure-compiler': {
my_target: {
files: {
'dest/output.min.js': ['src/js/**/*.js']
},
options: {
compilation_level: 'SIMPLE',
language_in: 'ECMASCRIPT5_STRICT',
create_source_map: 'dest/output.min.js.map',
output_wrapper: '(function(){\n%output%\n}).call(this)\n//# sourceMappingURL=output.min.js.map'
}
}
}
});
```
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
#### Closure Library Example:
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```js
// Project configuration.
grunt.initConfig({
'closure-compiler': {
my_target: {
files: {
'dest/output.min.js': ['src/js/**/*.js']
},
options: {
js: '/node_modules/google-closure-library/**.js'
compilation_level: 'SIMPLE',
manage_closure_dependencies: true,
language_in: 'ECMASCRIPT5_STRICT',
create_source_map: 'dest/output.min.js.map',
output_wrapper: '(function(){\n%output%\n}).call(this)\n//# sourceMappingURL=output.min.js.map'
}
}
}
});
```
## Dependency Licenses
### Using the Gulp Plugin
### Rhino
The gulp plugin supports piping multiple files through the compiler.
<table>
<tr>
<td>Code Path</td>
<td>
<code>src/com/google/javascript/rhino</code>, <code>test/com/google/javascript/rhino</code>
</td>
</tr>
Options are a direct match to the compiler flags without the leading "--".
<tr>
<td>URL</td>
<td>http://www.mozilla.org/rhino</td>
</tr>
#### Basic Configuration Example:
<tr>
<td>Version</td>
<td>1.5R3, with heavy modifications</td>
</tr>
```js
var closureCompiler = require('google-closure-compiler').gulp();
<tr>
<td>License</td>
<td>Netscape Public License and MPL / GPL dual license</td>
</tr>
gulp.task('js-compile', function () {
return gulp.src('./src/js/**/*.js', {base: './'})
.pipe(closureCompiler({
compilation_level: 'SIMPLE',
warning_level: 'VERBOSE',
language_in: 'ECMASCRIPT6_STRICT',
language_out: 'ECMASCRIPT5_STRICT',
output_wrapper: '(function(){\n%output%\n}).call(this)\n//# sourceMappingURL=output.min.js.map'
js_output_file: 'output.min.js'
}))
.pipe(gulp.dest('./dist/js'));
});
```
<tr>
<td>Description</td>
<td>A partial copy of Mozilla Rhino. Mozilla Rhino is an
implementation of JavaScript for the JVM. The JavaScript
parse tree data structures were extracted and modified
significantly for use by Google's JavaScript compiler.</td>
</tr>
### Use without gulp.src
Gulp files are all read into memory, transformed into a JSON stream, and piped through the
compiler. With large source sets this can lead to performance issues.
<tr>
<td>Local Modifications</td>
<td>The packages have been renamespaced. All code not
relevant to the parse tree has been removed. A JsDoc parser and static typing
system have been added.</td>
</tr>
</table>
Closure-compiler can natively expand file globs which will greatly alleviate this issue.
### Args4j
```js
var closureCompiler = require('google-closure-compiler').gulp();
<table>
<tr>
<td>Code Path</td>
<td><code>lib/args4j.jar</code></td>
</tr>
gulp.task('js-compile', function () {
return closureCompiler({
js: './src/js/**.js',
compilation_level: 'SIMPLE',
warning_level: 'VERBOSE',
language_in: 'ECMASCRIPT6_STRICT',
language_out: 'ECMASCRIPT5_STRICT',
output_wrapper: '(function(){\n%output%\n}).call(this)\n//# sourceMappingURL=output.min.js.map'
js_output_file: 'output.min.js'
})
.pipe(gulp.dest('./dist/js'));
});
```
<tr>
<td>URL</td>
<td>https://args4j.dev.java.net/</td>
</tr>
##### gulp.src base option
Gulp attempts to set the base of a glob from the point of the first wildcard. This isn't always
what is desired. Users can specify the { base: 'path' } option to `gulp.src` calls to override
this behavior.
<tr>
<td>Version</td>
<td>2.0.26</td>
</tr>
### Gulp Sourcemaps
The gulp plugin supports gulp sourcemaps.
<tr>
<td>License</td>
<td>MIT</td>
</tr>
```js
var closureCompiler = require('google-closure-compiler').gulp();
var sourcemaps = require('gulp-sourcemaps');
<tr>
<td>Description</td>
<td>args4j is a small Java class library that makes it easy to parse command line
options/arguments in your CUI application.</td>
</tr>
gulp.task('js-compile', function () {
return gulp.src('./src/js/**/*.js', {base: './'})
.pipe(sourcemaps.init())
.pipe(closureCompiler({
compilation_level: 'SIMPLE',
warning_level: 'VERBOSE',
language_in: 'ECMASCRIPT6_STRICT',
language_out: 'ECMASCRIPT5_STRICT',
output_wrapper: '(function(){\n%output%\n}).call(this)\n//# sourceMappingURL=output.min.js.map'
js_output_file: 'output.min.js'
}))
.pipe(souremaps.write('/'))
.pipe(gulp.dest('./dist/js'));
});
```
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
## Windows Path Length Limitations
Windows command shells have a maximum length for a command. This is surprisingly easy to hit when
you allow the build tools to expand globs for large sets of source files for the compiler.
### Guava Libraries
This can be avoided by specifying the input globs as compiler arguments via the `--js` flag and
let it expand the files. You can even mix these techniques. Files specified via `js` options will
specified first.
<table>
<tr>
<td>Code Path</td>
<td><code>lib/guava.jar</code></td>
</tr>
A flagfile can also be used to workaround this issue.
<tr>
<td>URL</td>
<td>https://github.com/google/guava</td>
</tr>
### Grunt Example
```js
'closure-compiler': {
my_target: {
files: {
'dest/out.min.js': ['src/**/*.js']
},
options: {
js: 'node_modules/google-closure-library/**.js'
// other options here
}
}
}
```
<tr>
<td>Version</td>
<td>18.0</td>
</tr>
### Gulp Example
```js
var closureCompiler = require('google-closure-compiler').gulp();
gulp.src('src/**/*.js')
.pipe(closureCompiler({
js: 'node_modules/google-closure-library/**.js'
// other options here
})
.pipe(gulp.dest('dist/out.min.js'));
```
<tr>
<td>License</td>
<td>Apache License 2.0</td>
</tr>
## Plugin Authors and Native Node Usage
A low-level node class is included to facilitate spawning the compiler jar as a process from Node.
In addition, it exposes a static property with the path to the compiler jar file.
<tr>
<td>Description</td>
<td>Google's core Java libraries.</td>
</tr>
```js
var ClosureCompiler = require('google-closure-compiler').compiler;
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
console.log(ClosureCompiler.jar_path); // absolute path the compiler jar
### JSR 305
var closureCompiler = new ClosureCompiler({
js: 'file-one.js',
compilation_level: 'ADVANCED'
});
<table>
<tr>
<td>Code Path</td>
<td><code>lib/jsr305.jar</code></td>
</tr>
var compilerProcess = closureCompiler.run(function(exitCode, stdOut, stdErr) {
//compilation complete
});
```
<tr>
<td>URL</td>
<td>http://code.google.com/p/jsr-305/</td>
</tr>
## License
Copyright 2015 The Closure Compiler Authors
<tr>
<td>Version</td>
<td>svn revision 47</td>
</tr>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
<tr>
<td>License</td>
<td>BSD License</td>
</tr>
http://www.apache.org/licenses/LICENSE-2.0
<tr>
<td>Description</td>
<td>Annotations for software defect detection.</td>
</tr>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### JUnit
<table>
<tr>
<td>Code Path</td>
<td><code>lib/junit.jar</code></td>
</tr>
<tr>
<td>URL</td>
<td>http://sourceforge.net/projects/junit/</td>
</tr>
<tr>
<td>Version</td>
<td>4.11</td>
</tr>
<tr>
<td>License</td>
<td>Common Public License 1.0</td>
</tr>
<tr>
<td>Description</td>
<td>A framework for writing and running automated tests in Java.</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### Protocol Buffers
<table>
<tr>
<td>Code Path</td>
<td><code>lib/protobuf-java.jar</code></td>
</tr>
<tr>
<td>URL</td>
<td>https://github.com/google/protobuf</td>
</tr>
<tr>
<td>Version</td>
<td>2.5.0</td>
</tr>
<tr>
<td>License</td>
<td>New BSD License</td>
</tr>
<tr>
<td>Description</td>
<td>Supporting libraries for protocol buffers,
an encoding of structured data.</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### Truth
<table>
<tr>
<td>Code Path</td>
<td><code>lib/truth.jar</code></td>
</tr>
<tr>
<td>URL</td>
<td>https://github.com/google/truth</td>
</tr>
<tr>
<td>Version</td>
<td>0.24</td>
</tr>
<tr>
<td>License</td>
<td>Apache License 2.0</td>
</tr>
<tr>
<td>Description</td>
<td>Assertion/Proposition framework for Java unit tests</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### Ant
<table>
<tr>
<td>Code Path</td>
<td>
<code>lib/ant.jar</code>, <code>lib/ant-launcher.jar</code>
</td>
</tr>
<tr>
<td>URL</td>
<td>http://ant.apache.org/bindownload.cgi</td>
</tr>
<tr>
<td>Version</td>
<td>1.8.1</td>
</tr>
<tr>
<td>License</td>
<td>Apache License 2.0</td>
</tr>
<tr>
<td>Description</td>
<td>Ant is a Java based build tool. In theory it is kind of like "make"
without make's wrinkles and with the full portability of pure java code.</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### GSON
<table>
<tr>
<td>Code Path</td>
<td><code>lib/gson.jar</code></td>
</tr>
<tr>
<td>URL</td>
<td>https://github.com/google/gson</td>
</tr>
<tr>
<td>Version</td>
<td>2.2.4</td>
</tr>
<tr>
<td>License</td>
<td>Apache license 2.0</td>
</tr>
<tr>
<td>Description</td>
<td>A Java library to convert JSON to Java objects and vice-versa</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>None</td>
</tr>
</table>
### Node.js Closure Compiler Externs
<table>
<tr>
<td>Code Path</td>
<td><code>contrib/nodejs</code></td>
</tr>
<tr>
<td>URL</td>
<td>https://github.com/dcodeIO/node.js-closure-compiler-externs</td>
</tr>
<tr>
<td>Version</td>
<td>e891b4fbcf5f466cc4307b0fa842a7d8163a073a</td>
</tr>
<tr>
<td>License</td>
<td>Apache 2.0 license</td>
</tr>
<tr>
<td>Description</td>
<td>Type contracts for NodeJS APIs</td>
</tr>
<tr>
<td>Local Modifications</td>
<td>Substantial changes to make them compatible with NpmCommandLineRunner.</td>
</tr>
</table>
## Version History
Closure Compiler release notes can be found on the
[main repository wiki](https://github.com/google/closure-compiler/wiki/Binary-Downloads).

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc