grunt-symbolic-link
Advanced tools
Comparing version 0.2.0 to 0.3.0rc1
{ | ||
"name": "grunt-symbolic-link", | ||
"description": "Create a symlink between paths", | ||
"version": "0.2.0", | ||
"version": "0.3.0rc1", | ||
"homepage": "https://github.com/mintbridge/grunt-symbolic-link", | ||
@@ -31,3 +31,3 @@ "author": { | ||
"dependencies": { | ||
"grunt-lib-contrib": "~0.3.0", | ||
"grunt": "0.4.0rc8", | ||
"mkdirp": "~0.3.1", | ||
@@ -37,4 +37,4 @@ "rimraf": "~2.0.3" | ||
"devDependencies": { | ||
"grunt": "~0.3.15", | ||
"grunt-contrib-clean": "~0.3.0" | ||
"grunt-contrib-clean": "0.4.0rc6", | ||
"grunt-contrib-nodeunit": "0.1.2rc6" | ||
}, | ||
@@ -41,0 +41,0 @@ "keywords": [ |
@@ -12,5 +12,2 @@ /* | ||
// TODO: ditch this when grunt v0.4 is released | ||
grunt.util = grunt.util || grunt.utils; | ||
var fs = require('fs'); | ||
@@ -21,5 +18,4 @@ var path = require('path'); | ||
grunt.registerMultiTask('symlink', 'Create a symlink between paths', function() { | ||
var helpers = require('grunt-lib-contrib').init(grunt); | ||
var options = helpers.options(this, { | ||
var options = this.options({ | ||
overwrite: false, | ||
@@ -39,5 +35,2 @@ force: false, | ||
// TODO: ditch this when grunt v0.4 is released | ||
this.files = helpers.normalizeMultiTaskFiles(this.data, this.target); | ||
target = path.normalize(this.data.target); | ||
@@ -44,0 +37,0 @@ link = path.normalize(this.data.link); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12775
217
+ Addedgrunt@0.4.0rc8
- Removedgrunt-lib-contrib@~0.3.0
- Removedgrunt-lib-contrib@0.3.1(transitive)