https://github.com/jondotsoy/asunder.js
A transform to build javascript files in the browser extending all dependencies in other file.
https://github.com/jondotsoy/asunder.js
Last synced: about 2 months ago
JSON representation
A transform to build javascript files in the browser extending all dependencies in other file.
- Host: GitHub
- URL: https://github.com/jondotsoy/asunder.js
- Owner: JonDotsoy
- License: mit
- Created: 2016-11-14T02:31:44.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2016-11-14T14:30:56.000Z (over 8 years ago)
- Last Synced: 2025-03-17T08:47:25.177Z (2 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asunder.js
A transform to build javascript files in the browser extending all dependencies in other file.[](https://www.npmjs.com/package/asunder.js)
[](https://www.npmjs.com/package/asunder.js)
[](https://www.npmjs.com/package/asunder.js)> Inspired on browserify but with all style of Gulp.
```javascript
const gulp = require("gulp")
const asunder = require("asunder.js").asundergulp.task("script", () =>
gulp.src("src/scripts/**/*.js")
.pipe(asunder({
modules: [
"react",
"react-render",
"debug",
"lodash",
"jquery"
],
}))
.pipe(gulp.dest("www"))
)// Output files
// www/app.js
// www/app.requeriments.js
```## What up? In the behaviour.
### OLD
### NOW
