Unlike the legacy build tool (section below), it disables generation of docs and demo files by default.
### Example
The following example shows how to build a highlightjs bundle with that outputs to the "js/deps" directory, and includes only the "xml", "javascript", and "css" languages in the bundle.
The bundle is outputted uncompressed (`-n`).
```Bash
hljs -n --output js/deps/ xml javascript css
```
Build just for Web, don't include docs:
```Bash
hljs --output "some/path" xml javascript
```
Build for Web, include docs:
```Bash
hljs --docs --output "some/path" xml javascript
```
Build for NodeJS:
```Bash
hljs -t node --output "some/path" xml javascript
```
Build for everything (Node and Browser):
```Bash
hljs -t all --output "some/path" xml javascript
```
If you provide no arguments, a bundle is built as the described below (the old way).
Building
Building (the old way)
--------
The build tool is written in JavaScript using node.js. Before running the