mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Conflicts: packages/application-configuration/package.js packages/ctl-helper/package.js packages/ctl/package.js packages/dev-bundle-fetcher/package.js packages/follower-livedata/package.js packages/jquery/package.js packages/star-translate/package.js packages/test-in-browser/package.js tools/bundler.js tools/compiler.js tools/package-client.js tools/package-source.js tools/package-version-parser.js tools/server/boot.js
17 lines
667 B
JavaScript
17 lines
667 B
JavaScript
Package.describe({
|
|
summary: "Manipulate the DOM using CSS selectors",
|
|
|
|
// XXX WHOOPS! We accidentally published jquery 1.11.2 as 1.11.3, because we
|
|
// naively thought that "call the version '1.11.2', add a comment saying that
|
|
// the next version should be '1.11.2_1'" would be sufficient to not be
|
|
// missed during the semi-automated version number bumping step. Next time, use `_0` from the start so it's obvious that something weird is happening!
|
|
version: '1.11.3-winr.2_1' // XXX see above!!!!
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.addFiles(['jquery.js', 'post.js'], 'client');
|
|
|
|
api.export('$', 'client');
|
|
api.export('jQuery', 'client');
|
|
});
|