mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
Package.describe({
|
|
summary: "Used by the coffeescript package's tests",
|
|
version: "1.0.2"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('coffeescript', ['client', 'server']);
|
|
api.export('COFFEESCRIPT_EXPORTED');
|
|
api.addFiles("exporting.coffee", ['client', 'server']);
|
|
});
|