Skip to content

Commit 83ec5e2

Browse files
committed
Let's not pretend that manifest names are configurable...
1 parent 10984c0 commit 83ec5e2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build/tasks/build.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
2222
homepage: "http://jqueryui.com/{plugin}-effect/",
2323
demo: "http://jqueryui.com/{plugin}-effect/",
2424
docs: "http://api.jqueryui.com/{plugin}-effect/",
25-
dependencies: [ "effect" ],
26-
file: "ui.effect-{plugin}"
25+
dependencies: [ "effect" ]
2726
}
2827
};
2928

@@ -70,7 +69,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
7069
manifest.dependencies[ "ui." + dependency ] = pkg.version;
7170
});
7271

73-
grunt.file.write( replace( baseManifest.file || "ui.{plugin}" ) + ".jquery.json",
72+
grunt.file.write( manifest.name + ".jquery.json",
7473
JSON.stringify( manifest, null, "\t" ) );
7574
});
7675
});

0 commit comments

Comments
 (0)