Files
meteor/packages/jquery/package.js
Ben Newman 232ab2d209 Bump package versions for 1.4.2-beta.9 release.
I had to scrap the 1.4.2-beta.8 release because meteor-tool@1.4.2-beta.8
got published by a partial run of the publish-release script, but then the
publish-release script thought meteor-tool changed after that, and I
didn't want to republish it as something like 1.4.2-1-beta.8.
2016-10-05 18:42:56 -04:00

19 lines
511 B
JavaScript

Package.describe({
summary: "Manipulate the DOM using CSS selectors",
// This is actually jQuery 1.11.2, but because of people bumping the
// patch number instead of the wrap number, we're higher than that.
// In fairness, there's no way to make an RC of a new version without
// bumping the patch number.
version: '1.11.10-beta.9'
});
Package.onUse(function (api) {
api.use('modules');
api.mainModule('main.js', 'client');
api.export('$', 'client');
api.export('jQuery', 'client');
});