Files
meteor/packages/diff-sequence/package.js
Ben Newman e150f6c919 Bump 1.3 beta release numbers.
The beta released with this commit (modules-beta.6) included everything on
the release-1.3 branch up to bdf64da339
("Avoid circular package.json resolution chains.").

Unfortunately, additional commits were pushed to the branch before this
commit was pushed, so the release tag release/METEOR@1.3-modules-beta.6
does not correspond to any commit in the branch history.

Rather than attempting to rewrite the branch history, I decided to amend
this commit with this explanation before pushing it.

To see exactly what was released with the sixth beta:

  git fetch --tags
  git log release/METEOR@1.3-modules-beta.6
2016-02-04 09:58:05 -05:00

27 lines
457 B
JavaScript

Package.describe({
summary: "An implementation of a diff algorithm on arrays and objects.",
version: '1.0.2-modules.6',
documentation: null
});
Package.onUse(function (api) {
api.export('DiffSequence');
api.use(['underscore', 'ejson']);
api.addFiles([
'diff.js'
]);
});
Package.onTest(function (api) {
api.use([
'tinytest',
'underscore',
'ejson'
]);
api.use('diff-sequence');
api.addFiles([
'tests.js'
]);
});