mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Build: Fix manifest dependencies
Clone bower dependencies instead of reusing and modifying the same object multiple times.
This commit is contained in:
parent
56e092d43d
commit
6ef5c3844d
@ -38,7 +38,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
|
||||
bower = grunt.file.readJSON( "bower.json" );
|
||||
|
||||
Object.keys( plugins ).forEach(function( plugin ) {
|
||||
var manifest,
|
||||
var manifest, bowerKey,
|
||||
data = plugins[ plugin ],
|
||||
name = plugin.charAt( 0 ).toUpperCase() + plugin.substr( 1 );
|
||||
|
||||
@ -65,11 +65,15 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
|
||||
docs: data.docs || replace( baseManifest.docs ||
|
||||
"http://api.jqueryui.com/{plugin}/" ),
|
||||
download: "http://jqueryui.com/download/",
|
||||
dependencies: bower.dependencies,
|
||||
dependencies: {},
|
||||
// custom
|
||||
category: data.category || type
|
||||
};
|
||||
|
||||
for ( bowerKey in bower.dependencies ) {
|
||||
manifest.dependencies[ bowerKey ] = bower.dependencies[ bowerKey ];
|
||||
}
|
||||
|
||||
(baseManifest.dependencies || [])
|
||||
.concat(data.dependencies || [])
|
||||
.forEach(function( dependency ) {
|
||||
|
Loading…
Reference in New Issue
Block a user