grunt-symlink
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "grunt-symlink", | ||
"description": "Create symlinks", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"homepage": "https://github.com/geddesign/grunt-symlink", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -17,2 +17,7 @@ /* | ||
fs.symlinkSync(link.to, link.link, link.type || 'file'); | ||
var rel = link.link.substr(0, link.link.lastIndexOf('/') + 1); | ||
grunt.log.ok('created symlink at ' + link.link + | ||
' that points to ' + link.to + | ||
' (relative to ' + rel +')' | ||
); | ||
} | ||
@@ -19,0 +24,0 @@ catch(e){ |
24732
71