From 33724cd1008a02f865921e0a2c8f748461c84d43 Mon Sep 17 00:00:00 2001 From: Alex Goller Date: Tue, 18 Dec 2018 14:36:18 +0100 Subject: [PATCH] update links to uglifyJS documentation (#530) --- docs/uglify-examples.md | 2 +- docs/uglify-options.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/uglify-examples.md b/docs/uglify-examples.md index a1c9d2a5..44c145c4 100644 --- a/docs/uglify-examples.md +++ b/docs/uglify-examples.md @@ -137,7 +137,7 @@ grunt.initConfig({ Specify `beautify: true` to beautify your code for debugging/troubleshooting purposes. Pass an object to manually configure any other output options. -See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#beautifier-options) for more information. +See [UglifyJS documentation](https://github.com/mishoo/UglifyJS2#output-options) for more information. ```js // Project configuration. diff --git a/docs/uglify-options.md b/docs/uglify-options.md index 2e36df74..045c41d4 100644 --- a/docs/uglify-options.md +++ b/docs/uglify-options.md @@ -26,19 +26,19 @@ sourceMapUrl | sourceMap.url Type: `Boolean` `Object` Default: `{}` -Turn on or off mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_names()` *and* `ast.compute_char_frequency()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangler-options). +Turn on or off mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_names()` *and* `ast.compute_char_frequency()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangle-options). ## compress Type: `Boolean` `Object` Default: `{}` -Turn on or off source compression with default options. If an `Object` is specified, it is passed as options to `UglifyJS.Compressor()`. [View all options here](https://github.com/mishoo/UglifyJS2#compressor-options). +Turn on or off source compression with default options. If an `Object` is specified, it is passed as options to `UglifyJS.Compressor()`. [View all options here](https://github.com/mishoo/UglifyJS2#compress-options). ## beautify Type: `Boolean` `Object` Default: `false` -Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#beautifier-options) +Turns on beautification of the generated source code. [View all options here](https://github.com/mishoo/UglifyJS2#output-options) #### parse.expression Type: `Boolean` @@ -143,7 +143,7 @@ Set this to `true` if you still care about full compliance with Internet Explore Type: `Boolean` `Object` Default: `false` -Turn on or off property mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_properties()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangler-options). +Turn on or off property mangling with default options. If an `Object` is specified, it is passed directly to `ast.mangle_properties()` (mimicking command line behavior). [View all options here](https://github.com/mishoo/UglifyJS2#mangle-options). ## reserveDOMProperties Type: `Boolean`