aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'build/tasks')
-rw-r--r--build/tasks/build.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/build/tasks/build.js b/build/tasks/build.js
index dc1b5e5bb..5dff38f6a 100644
--- a/build/tasks/build.js
+++ b/build/tasks/build.js
@@ -22,8 +22,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
homepage: "http://jqueryui.com/{plugin}-effect/",
demo: "http://jqueryui.com/{plugin}-effect/",
docs: "http://api.jqueryui.com/{plugin}-effect/",
- dependencies: [ "effect" ],
- file: "ui.effect-{plugin}"
+ dependencies: [ "effect" ]
}
};
@@ -70,7 +69,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
manifest.dependencies[ "ui." + dependency ] = pkg.version;
});
- grunt.file.write( replace( baseManifest.file || "ui.{plugin}" ) + ".jquery.json",
+ grunt.file.write( manifest.name + ".jquery.json",
JSON.stringify( manifest, null, "\t" ) );
});
});