Sha256: 3e83abe5ec3910ed2be1515952a410255735139a9609939f1106539164ad46ac

Contents?: true

Size: 481 Bytes

Versions: 42

Compression:

Stored size: 481 Bytes

Contents

var gulp = require('gulp');
var uglify = require('gulp-uglify');
var concat = require('gulp-concat');

var preserveFirstComment = function() {
  var set = false;

  return function() {
     if (set) return false;
     set = true;
     return true;
  };
};

gulp.task('uglify', function() {
  gulp.src('lib/marked.js')
    .pipe(uglify({preserveComments: preserveFirstComment()}))
    .pipe(concat('marked.min.js'))
    .pipe(gulp.dest('.'));
});

gulp.task('default', ['uglify']);

Version data entries

42 entries across 41 versions & 3 rubygems

Version Path
ela-4.1.6 node_modules/marked/Gulpfile.js
ela-4.1.5 node_modules/marked/Gulpfile.js
ela-4.1.4 node_modules/marked/Gulpfile.js
ela-4.1.3 node_modules/marked/Gulpfile.js
ela-4.1.2 node_modules/marked/Gulpfile.js
ela-4.1.1 node_modules/marked/Gulpfile.js
ela-4.1.0 node_modules/marked/Gulpfile.js
ela-4.0.0 node_modules/marked/Gulpfile.js
ela-3.4.3 node_modules/marked/Gulpfile.js
ela-3.4.2 node_modules/marked/Gulpfile.js
ela-3.4.0 node_modules/marked/Gulpfile.js
ela-3.3.1 node_modules/marked/Gulpfile.js
ela-3.3.0 node_modules/marked/Gulpfile.js
ela-3.2.0 node_modules/marked/Gulpfile.js
ela-3.1.1 node_modules/marked/Gulpfile.js
ela-3.1.0 node_modules/marked/Gulpfile.js
ela-3.0.0 node_modules/marked/Gulpfile.js
ela-2.0.0 node_modules/marked/Gulpfile.js
ela-1.1.0 node_modules/marked/Gulpfile.js
ad2games-ui_components-2.4.2 vendor/assets/bower_components/marked/Gulpfile.js