Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-bower-config

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-bower-config - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

component.json

@@ -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);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc