0.0.7 • Published 7 years ago

gulp-logify-alert v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

Gulp plugin for uploading source map files to Logify Alert

Automatically uploads source map files to Logify Alert server. These files are used to convert a call stack obtained from minified JS files to a call stack obtained from the corresponding non-minified (original) JS file.

Install

$ npm install gulp-logify-alert --save-dev

How to use

Uploading a source map file requires specifying your application's Private API Key. This key can be found on the Edit Application Information form.

var gulpLogify = require('gulp-logify-alert');

gulp.task('uploadFiles', function(){
    gulp.src('./src/**/*.*')
        .pipe(gulpLogify('YOUR_PRIVATE_API_KEY'))
        .pipe(gulp.dest('./output'));
});