mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
11 lines
310 B
JavaScript
11 lines
310 B
JavaScript
Package.describe({
|
|
name: 'meteor-autosize',
|
|
summary: 'Automatically adjust textarea height based on user input.',
|
|
version: '5.0.1',
|
|
git: "https://github.com/DeDeSt/meteor-autosize.git",
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.addFiles(['lib/autosize.js'], 'client');
|
|
});
|