mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Added gulp, and started using the file being built by gulp. Fixed some issues with remote control changing. Implemented clients being able to change password
This commit is contained in:
146
server/node_modules/gulp-uglifyjs/README.md
generated
vendored
Normal file
146
server/node_modules/gulp-uglifyjs/README.md
generated
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
# gulp-uglifyjs [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]
|
||||
|
||||
__DEPRECATED__: This plugin has been blacklisted as it relies on Uglify to concat
|
||||
the files instead of using [gulp-concat][concat-link], which breaks the "It
|
||||
should do one thing" paradigm. When I created this plugin, there was no way to
|
||||
get source maps to work with gulp, however now there is a [gulp-sourcemaps][sourcemaps-link]
|
||||
plugin that achieves the same goal. gulp-uglifyjs still works great and gives
|
||||
very granular control over the Uglify execution, I'm just giving you a heads up
|
||||
that other options now exist.
|
||||
|
||||
> Minify multiple JavaScript with UglifyJS2.
|
||||
|
||||
This plugin is based off of [gulp-uglify][uglify-link] but allows you to
|
||||
directly use all of Uglify's options. The main difference between these two
|
||||
plugins is that passing in an array of files (or glob pattern that matches
|
||||
multiple files) will pass that array directly to Uglify. Uglify will handle both
|
||||
concatenating and minifying those files.
|
||||
|
||||
Letting Uglify handle the concatenation and minification allows for the
|
||||
generated source map to be able to separate the files in the browser for easier
|
||||
debugging, and it avoids the intermediate step of `concat()`. Using `concat()`
|
||||
and then `uglify()` would result in a source map for the already concatenated
|
||||
file which has the possibility of being quite large, making it hard to find the
|
||||
code you are wanting to debug.
|
||||
|
||||
[sourcemaps-link]: https://github.com/floridoo/gulp-sourcemaps
|
||||
[concat-link]: https://github.com/wearefractal/gulp-concat
|
||||
[uglify-link]: https://github.com/terinjokes/gulp-uglify
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
var uglify = require('gulp-uglifyjs');
|
||||
|
||||
gulp.task('uglify', function() {
|
||||
gulp.src('public/js/*.js')
|
||||
.pipe(uglify())
|
||||
.pipe(gulp.dest('dist/js'))
|
||||
});
|
||||
```
|
||||
|
||||
This will concatenate and minify all files found by `public/js/*.js` and write
|
||||
it to a file with the same name as the first file found.
|
||||
|
||||
## API
|
||||
|
||||
`uglify([filename], [options])`
|
||||
|
||||
- filename - optional
|
||||
|
||||
Override the default output filename.
|
||||
|
||||
- options - optional
|
||||
|
||||
These options are directly passed to Uglify. Below are some examples of what
|
||||
is available. To see a full list, read UglifyJS's [documentation](https://github.com/mishoo/UglifyJS2/#api-reference)
|
||||
|
||||
- `outSourceMap`
|
||||
|
||||
(default `false`) Give a `string` to be the name of the source map. Set to
|
||||
`true` and the source map name will be the same as the output file name
|
||||
suffixed with `.map`.
|
||||
|
||||
Note: if you would like your source map to point to relative paths instead
|
||||
of absolute paths (which you probably will if it is hosted on a server), set
|
||||
the `basePath` option to be the base of where the content is served.
|
||||
|
||||
- `inSourceMap`
|
||||
|
||||
If you're compressing compiled JavaScript and have a source map for it, you
|
||||
can use the inSourceMap argument. This can only be used in conjunction with
|
||||
`outSourceMap`.
|
||||
|
||||
- `sourceRoot`
|
||||
|
||||
Sets the root location for where the source files should be found
|
||||
|
||||
- `mangle`
|
||||
|
||||
(default `{}`) Set to `false` to skip mangling names. See [options](https://github.com/mishoo/UglifyJS2/blob/e37b67d013c4537a36bb3c24f4f99e72efbf6d4b/lib/scope.js#L328) for possible key/value pairs.
|
||||
|
||||
- `output`
|
||||
|
||||
(default `null`) Pass an Object if you wish to specify additional [output options](http://lisperator.net/uglifyjs/codegen).
|
||||
The defaults are optimized for best compression.
|
||||
|
||||
- `compress`
|
||||
|
||||
(default `{}`) Pass an Object to specify custom [compressor options](http://lisperator.net/uglifyjs/compress).
|
||||
Pass `false` to skip compression completely.
|
||||
|
||||
- `enclose`
|
||||
|
||||
(default `undefined`) Pass an Object to wrap all of the code in a closure
|
||||
with a configurable arguments/parameters list. Each key-value pair in the
|
||||
enclose object is effectively an argument-parameter pair.
|
||||
|
||||
- `wrap`
|
||||
|
||||
(default `undefined`) Pass a String to wrap all of the code in a closure.
|
||||
This is an easy way to make sure nothing is leaking. Variables that need to
|
||||
be public `exports` and `global` are made available. The value of wrap is
|
||||
the global variable exports will be available as.
|
||||
|
||||
- `exportAll`
|
||||
|
||||
(default `false`) Set to `true` to make all global functions and variables
|
||||
available via the `export` variable. Only available when using `wrap`.
|
||||
|
||||
### Examples
|
||||
|
||||
To minify multiple files into a 'app.min.js' and create a source map:
|
||||
|
||||
```js
|
||||
gulp.task('uglify', function() {
|
||||
gulp.src('public/js/*.js')
|
||||
.pipe(uglify('app.min.js', {
|
||||
outSourceMap: true
|
||||
}))
|
||||
.pipe(gulp.dest('dist/js'))
|
||||
});
|
||||
```
|
||||
|
||||
To minify multiple files from different paths to 'app.js', but skip mangling
|
||||
and beautify the results:
|
||||
|
||||
```js
|
||||
gulp.task('uglify', function() {
|
||||
gulp.src(['public/js/*.js', 'bower_components/**/*.js'])
|
||||
.pipe(uglify('app.js', {
|
||||
mangle: false,
|
||||
output: {
|
||||
beautify: true
|
||||
}
|
||||
}))
|
||||
.pipe(gulp.dest('dist/js'))
|
||||
});
|
||||
```
|
||||
|
||||
[npm-image]: http://img.shields.io/npm/v/gulp-uglifyjs.svg
|
||||
[npm-url]: https://www.npmjs.org/package/gulp-uglifyjs/
|
||||
|
||||
[downloads-image]: http://img.shields.io/npm/dm/gulp-uglifyjs.svg
|
||||
|
||||
[travis-url]: https://travis-ci.org/craigjennings11/gulp-uglifyjs
|
||||
[travis-image]: https://travis-ci.org/craigjennings11/gulp-uglifyjs.svg?branch=master
|
||||
Reference in New Issue
Block a user