Skip to content
This repository was archived by the owner on Sep 25, 2021. It is now read-only.

Commit bc1d5b3

Browse files
committed
removed mentions of minification
1 parent 4cc374d commit bc1d5b3

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ loaders like RequireJS, Browserify or webpack and all web browsers.
1111
## Usage
1212

1313
### Client-side
14-
Include the (minified) JavaScript Templates script in your HTML markup:
14+
Include the JavaScript Templates script in your HTML markup:
1515

1616
```html
1717
<script src="js/tmpl.min.js"></script>
@@ -354,19 +354,17 @@ The JavaScript Templates project comes with a compilation script, that allows
354354
you to compile your templates into JavaScript code and combine them with a
355355
minimal Templates runtime into one minified JavaScript file.
356356

357-
The compilation script is built for [node.js](http://nodejs.org/) and also
358-
requires [UglifyJS](https://github.com/mishoo/UglifyJS).
359-
To use it, first install both the JavaScript Templates project and UglifyJS via
357+
The compilation script is built for [node.js](http://nodejs.org/).
358+
To use it, first install the JavaScript Templates project via
360359
[npm](https://www.npmjs.org/):
361360

362361
```sh
363-
npm install uglify-js blueimp-tmpl
362+
npm install blueimp-tmpl
364363
```
365364

366-
This will put the executables **uglifyjs** and **tmpl.js** into the folder
367-
**node_modules/.bin**. It will also make them available on your PATH if you
368-
install the packages globally
369-
(by adding the **-g** flag to the install command).
365+
This will put the executable **tmpl.js** into the folder
366+
**node_modules/.bin**. It will also make it available on your PATH if you
367+
install the packages globally (by adding the **-g** flag to the install command).
370368

371369
The **tmpl.js** executable accepts the paths to one or multiple template files
372370
as command line arguments and prints the generated JavaScript code to the

0 commit comments

Comments
 (0)