diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-07-06 12:39:17 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-07-06 12:39:17 -0400 |
commit | d369417f7eacbf4c7be68d138f3fd05a8adf0314 (patch) | |
tree | cca5ed148165e3d557ef8bdf437684d2d6669e83 /build/tasks/build.js | |
parent | 7f859e4c7390e40c41f6789e085f2115d22ce44e (diff) | |
download | jquery-ui-d369417f7eacbf4c7be68d138f3fd05a8adf0314.tar.gz jquery-ui-d369417f7eacbf4c7be68d138f3fd05a8adf0314.zip |
Minor manifest updates.
Diffstat (limited to 'build/tasks/build.js')
-rw-r--r-- | build/tasks/build.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/build/tasks/build.js b/build/tasks/build.js index aeacc232d..5f9d33fec 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -4,6 +4,7 @@ var path = require( "path" ); grunt.registerTask( "manifest", "Generate jquery.json manifest files", function() { var pkg = grunt.config( "pkg" ), + // TODO: URLs for UI core and effects core base = { core: { name: "ui.{plugin}", @@ -18,10 +19,8 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function( name: "ui.effect-{plugin}", title: "jQuery UI {Plugin} Effect", keywords: [ "effect", "show", "hide" ], - // TODO: Will we have individual pages for 1.9? - homepage: "http://jqueryui.com/effect/", - // TODO: Will we have individual pages for 1.9? - demo: "http://jqueryui.com/effect/", + 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}" @@ -43,7 +42,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function( manifest = { name: replace( baseManifest.name ), - title: replace( baseManifest.title ), + title: data.title || replace( baseManifest.title ), description: data.description, keywords: [ "ui", plugin ] .concat( baseManifest.keywords || [] ) |