mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
11 lines
188 B
CoffeeScript
11 lines
188 B
CoffeeScript
c = require "../config"
|
|
p = c.paths
|
|
g = c.plugins.gulp
|
|
|
|
gulp = require "gulp"
|
|
|
|
module.exports = ->
|
|
gulp.src "#{p.out}/*"
|
|
.pipe g.size()
|
|
module.exports.displayName = "size"
|