Skip to content

Commit

Permalink
パス修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cognitom committed Dec 4, 2014
1 parent 64d8550 commit 056b60b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ This is the repo for tracking my gulpfiles. Use this repo with [gulp-straw](http
| :-- | :-- |
| [gulpfile](gulpfile.coffee) | `default` `clean` `watch` |
| [task/bower](task/bower.coffee) | `bower` `bower-install` `bower-update` `bower-copy` |
| [task/coffee](task/coffee.coffee) | `coffee` |
| [task/browserify](task/browserify.coffee) | `browserify` |
| [task/coffee](task/coffee.coffee) | `coffee` |
| [task/css](task/css.coffee) | `css` `css-lint` |
| [task/icon](task/icon.coffee) | `icon` |
| [task/parse](task/parse.coffee) | `parse` |
Expand Down
2 changes: 1 addition & 1 deletion task/browserify.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ uglify = require 'gulp-uglify'

$ =
src: './src/coffee/index.coffee'
dist: './dist/coffee/'
dist: './dist/js/'

gulp.task 'coffee', ->
browserify
Expand Down
2 changes: 1 addition & 1 deletion task/coffee.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ uglify = require 'gulp-uglify'

$ =
src: './src/coffee/**/*.coffee'
dist: './dist/coffee/'
dist: './dist/js/'

gulp.task 'coffee', ->
gulp.src $.src
Expand Down
2 changes: 1 addition & 1 deletion task/icon.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $ =
template: 'fontawesome-style'

gulp.task 'icon', ->
gulp.src "#{$.src}#{$.name}.sketch}"
gulp.src "#{$.src}#{$.name}.sketch"
.pipe sketch
export: 'artboards'
formats: 'svg'
Expand Down

0 comments on commit 056b60b

Please sign in to comment.