Files
meteor/packages/jquery/package.js
2016-03-24 16:08:56 -04:00

19 lines
509 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.6-rc.12'
});
Package.onUse(function (api) {
api.use('modules');
api.mainModule('main.js', 'client');
api.export('$', 'client');
api.export('jQuery', 'client');
});