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.
12 lines
306 B
12 lines
306 B
// Package metadata for Meteor.js. |
|
|
|
Package.describe({ |
|
name: 'zenorocha:clipboard', |
|
summary: 'Modern copy to clipboard. No Flash. Just 3kb.', |
|
version: '2.0.11', |
|
git: 'https://github.com/zenorocha/clipboard.js', |
|
}); |
|
|
|
Package.onUse(function (api) { |
|
api.addFiles('dist/clipboard.js', 'client'); |
|
});
|
|
|