simplifyify icon indicating copy to clipboard operation
simplifyify copied to clipboard

A simplified Browserify and Watchify CLI

Results 6 simplifyify issues
Sort by recently updated
recently updated
newest added

When using simplifyify on a project that was already pre compiled with typescript, the source maps that were generated then are not reused. Instead, a new sourcemap referencing the generated...

enhancement

First off, thanks for the great tool! I'm having an issue when using Browsersync watch/reload with simplifyify. Here is the npm script I'm using. `simplifyify js/main.js -m -d -w -o...

enhancement
help wanted

I'm using Simplifyify with Gulp like that. ```js gulp.task("simplifyify", function(done) { simplifyify("app/dev/js/*.js", { outfile: "app/prod/js/*.js", debug: true, minify: false }) .on("end", function() { done(); }) .on("error", function(err) { done(err); });...

enhancement

When using the following "browserify": { "transform": [ "babelify", [ "stringify", { "extensions": [ ".html" ] } ] ] } my bundle has \n instead of \n, in all my...

This block: ``` "main": "js/src/app/bootstrap.js", "browserify": { "transform": [ "browserify-shim" ] }, "browserify-shim": { "./js/vendor/history.js": "history", "./js/vendor/bluebird/js/browser/bluebird.js": "bluebird" } ``` Generates a proper JS when using browserify 13.0.0 , but...

If there are any dots (.) inside an outfile directory name the task will fail, for example reverse url notation (au.com.company.dev). Is there an option that can be passed to...

bug