gulp-uglify
gulp-uglify copied to clipboard
Minify files with UglifyJS
[18:51:05] TypeError: Cannot assign to read only property 'atime' of object '#' at onFutimes (/Users/yuri/code/myown/clink/node_modules/.pnpm/[email protected]/node_modules/vinyl-fs/lib/file-operations.js:278:27) at FSReqCallback.oncomplete (node:fs:188:23) at FSReqCallback.callbackTrampoline (node:internal/async_hooks:130:17)
support asyncronous minifiers (e.g new terser).
Conversation and rational at: https://github.com/terinjokes/gulp-uglify/issues/236#issuecomment-643551152 Fixes #236
I have this task to generate bundled & minified JavaScript file: ``` return gulp.src(paths) .pipe(paths.sortByFilename ? sorter(key) : gulpUtil.noop()) .pipe(plumber(eh('Error compiling javascript (' + key + ')'))) .pipe(sourcemaps.init()) .pipe(gulpBabel()) .pipe(gulpConcat(key...
Gulp 4 is live for 2 years, now. It's time to upgrade the documentation to help developers implementing the library! I've just updated the examples to the new syntax.
We have a build that gets transpiled before hitting `uglify()`. Our code breaks with the following thrown error: ``` 'Unexpected token: keyword «function», expected: punc «;»', ``` We've finally narrowed...
Hey terinjokes, Just going through and updating dependencies! Sincerely, Bryan Stoner
**Describe the bug** SourceMaps doesn't work as expected with gulp-uglify and works very well when i dont use gulp-uglify the **To Reproduce** Minimal code to reproduce the bug this is...
Hello and thank you for this great module! I'm compiling my source code using Rollup + Babel, so I'm getting a single JavaScript file (flat module) and a sourcemap for...
Hello, I am getting a very ambiguous error in my gulp task since I have added the `nameCache` option to `uglify` pipe 😕 Here is the complete error: ``` GulpUglifyError:...