aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-07-09 10:19:17 -0400
committerScott González <scott.gonzalez@gmail.com>2012-07-09 10:19:17 -0400
commit83ec5e2077cffdea1ed9ff1e68b519baf320d6f0 (patch)
tree60eb530cea8196132b9f0193a3b8e7cd800c795d /build
parent10984c012ff541c9bb70f01f366f0fde26fa0d83 (diff)
downloadjquery-ui-83ec5e2077cffdea1ed9ff1e68b519baf320d6f0.tar.gz
jquery-ui-83ec5e2077cffdea1ed9ff1e68b519baf320d6f0.zip
Let's not pretend that manifest names are configurable...
Diffstat (limited to 'build')
-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" ) );
});
});