From a0cfdb1990df6b73a3707b6a8afcd82c5ced0d41 Mon Sep 17 00:00:00 2001 From: Peter Robins Date: Sun, 25 May 2014 17:39:23 +0100 Subject: [PATCH] Tasks readme: update url for new compiler FAQ As changed on closure-util https://github.com/openlayers/closure-util/pull/17 - just realised this link is here too. --- tasks/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/readme.md b/tasks/readme.md index 812170ba1b..6dbe9e69f9 100644 --- a/tasks/readme.md +++ b/tasks/readme.md @@ -27,7 +27,7 @@ Build configuration files are JSON files that are used to determine what should * **namespace** - `string` Optional namespace for exporting the `ol` object. By default, `ol` is assigned to the global object. - * **jvm** - `Array.` Optional array of [command line options](https://code.google.com/p/closure-compiler/wiki/FAQ#What_are_the_recommended_Java_VM_command-line_options?) for the compiler. By default, the Compiler is run with `['-server', '-XX:+TieredCompilation']`. + * **jvm** - `Array.` Optional array of [command line options](https://github.com/google/closure-compiler/wiki/FAQ#what-are-the-recommended-java-vm-command-line-options) for the compiler. By default, the Compiler is run with `['-server', '-XX:+TieredCompilation']`. The build task generates a list of source files sorted in dependency order and passes these to the compiler. This takes the place of the `--js` options that you would use when calling the compiler directly. If you want to add additional source files, typically you would use the `src` array described above. This works with sources that have `goog.require` and/or `goog.provide` calls (which are used to sort dependencies). If you want to force the inclusion of files that don't use `goog.require` or `goog.provide`, you can use the `js` property of the `compile` object. Paths in the `js` array will be passed to the compiler **after** all other source files.