mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
432 B
JavaScript
16 lines
432 B
JavaScript
Package.describe({
|
|
summary: "JavaScript and CSS minifiers",
|
|
internal: true
|
|
});
|
|
|
|
Npm.depends({
|
|
"clean-css": "1.1.2",
|
|
// Fork of 2.4.0 fixing https://github.com/mishoo/UglifyJS2/pull/308
|
|
"uglify-js": "https://github.com/meteor/UglifyJS2/tarball/bb0a762d12d2ecd058b9d7b57f16b4c289378d9c"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export(['CleanCSSProcess', 'UglifyJSMinify']);
|
|
api.add_files('minifiers.js', 'server');
|
|
});
|