Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Gulpfile fixes #81

Merged
merged 1 commit into from
Sep 9, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ livereload = require 'gulp-livereload'
concat = require 'gulp-concat'
minifyCSS = require 'gulp-minify-css'
karma = require 'gulp-karma'
clean = require 'gulp-clean'
rimraf = require 'gulp-rimraf'
markdox = require 'gulp-markdox'
fs = require 'fs'
http = require 'http'
Expand Down Expand Up @@ -313,13 +313,13 @@ gulp.task 'run', -> karmaAction = 'run'
gulp.task 'clean', ->

gulp.src ['build'], read : no
.pipe clean force : yes
.pipe rimraf force : yes


gulp.task 'clean-play', ->

gulp.src ['playground/{css/js}'], read : no
.pipe clean force : yes
.pipe rimraf force : yes


# Use markdox to output markdown files for the API Documentation.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"gulp-uglify": "^1.0.1",
"gulp-stylus": "1.3.0",
"gulp-minify-css": "^0.3.8",
"gulp-rimraf": "^0.1.0",
"gulp-util": "^3.0.1",
"gulp-concat": "^2.4.0",
"gulp-clean": "^0.3.1",
"gulp-if": "^1.1.0",
"coffee-script": "^1.8.0",
"coffeeify": "~0.7.0",
Expand Down