grunt-bower-config
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -11,3 +11,3 @@ { | ||
"sources": { | ||
"jquery": "jquery.js", | ||
"jquery": "*.js", | ||
"jquery-ui": [ | ||
@@ -14,0 +14,0 @@ "ui/jquery-ui.custom.js", |
@@ -36,2 +36,10 @@ /* | ||
componentFile: 'component.json' | ||
}, | ||
path: 'tmp', | ||
sources: { | ||
'jquery': '*.js', | ||
'jquery-ui': [ | ||
'ui/jquery-ui.custom.js', | ||
'themes/smoothness/jquery-ui.css' | ||
] | ||
} | ||
@@ -38,0 +46,0 @@ } |
{ | ||
"name": "grunt-bower-config", | ||
"description": "Bower Installer Task", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"homepage": "https://github.com/nicknisi/grunt-bower-config", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -19,12 +19,6 @@ /* | ||
grunt.util._.forEach(sources, function (file, source) { | ||
var files, | ||
srcPath = process.cwd() + '/'+ componentDir + '/' + source + '/', | ||
destPath = process.cwd() + '/' + dest + '/' + source + '/'; | ||
var srcPath = process.cwd() + '/'+ componentDir + '/' + source + '/', | ||
destPath = process.cwd() + '/' + dest + '/' + source + '/', | ||
files = grunt.file.expand({cwd: srcPath}, file); | ||
if (file instanceof Array) { | ||
files = file; | ||
} else { | ||
files = [file]; | ||
} | ||
files.forEach(function (file) { | ||
@@ -31,0 +25,0 @@ var filename = path.basename(file); |
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
11410
155