mirror of https://github.com/RubaXa/Sortable.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
559 B
24 lines
559 B
var packageName = 'rubaxa:sortable'; |
|
|
|
Package.describe({ |
|
name: packageName, |
|
summary: 'Sortable (official): minimalist reorderable drag-and-drop lists on modern browsers and touch devices', |
|
version: '0.5.2', |
|
git: 'https://github.com/RubaXa/Sortable.git' |
|
}); |
|
|
|
Package.onUse(function (api) { |
|
api.versionsFrom('0.9.0'); |
|
api.export('Sortable'); |
|
api.addFiles([ |
|
'Sortable.js' |
|
], 'client' |
|
); |
|
}); |
|
|
|
Package.onTest(function (api) { |
|
api.use(packageName, 'client'); |
|
api.use('tinytest', 'client'); |
|
|
|
api.addFiles('meteor/test.js', 'client'); |
|
});
|
|
|