HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/f/r/e/frenchy/www/french-american.org/current/node_modules/gulp-svg-sprites/gulpfile.js
var gulp = require("gulp");
var jshint = require("gulp-jshint");
var contribs = require("gulp-contribs");
var clean = require("gulp-clean");

gulp.task("clean:output", function() {
  return gulp.src("test/fixtures/output", {read: false})
    .pipe(clean());
});

require("./examples/gulpfile.basic");
require("./examples/gulpfile.basic-scss");
require("./examples/gulpfile.options");
require("./examples/gulpfile.scss");
require("./examples/gulpfile.defs");
require("./examples/gulpfile.symbols");

gulp.task("lint", function() {
  gulp.src(["test/specs/**/*.js", "!test/fixtures/**", "index.js"])
    .pipe(jshint("test/specs/.jshintrc"))
    .pipe(jshint.reporter("default"))
    .pipe(jshint.reporter("fail"));
});

gulp.task("contribs", function() {
  gulp.src("README.md")
    .pipe(contribs())
    .pipe(gulp.dest("./"));
});

gulp.task("default", ["lint"]);

gulp.task("docs", function() {

  var yuidoc = require("gulp-yuidoc");

  gulp.src(["./index.js"])
    .pipe(yuidoc.parser({spaces: 4}))
    .pipe(gulp.dest("./doc"));
});