https://github.com/jakecyr/bundle-javascript-files
Simple Script to Compile JS Files on a HTML page
https://github.com/jakecyr/bundle-javascript-files
algorithm bundle compile javascript
Last synced: 9 months ago
JSON representation
Simple Script to Compile JS Files on a HTML page
- Host: GitHub
- URL: https://github.com/jakecyr/bundle-javascript-files
- Owner: jakecyr
- Created: 2018-07-16T20:43:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-26T03:54:39.000Z (about 6 years ago)
- Last Synced: 2025-01-17T09:35:48.820Z (11 months ago)
- Topics: algorithm, bundle, compile, javascript
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BundleJS
Simple Script to Compile JS Files on a HTML page. Will search a specified HTML page and download a compiled JS file of all scripts on that page. Meant to bundle files before minifying.
### How to use
Download the `bundle.js` file and add the following `script` tag on one of your HTML pages:
```html
```
replacing `index.html` with the HTML page you want the script to search for scripts on to compile.
To prevent a JavaScript file from being included in the output, add the following comment to the file you want to exclude:
```javascript
// INCLUDE == FALSE
```