mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
Package.describe({
|
|
summary: "JavaScript and CSS minifiers",
|
|
internal: true
|
|
});
|
|
|
|
Npm.depends({
|
|
"clean-css": "1.0.11",
|
|
// We depend on this commit, which has not been released yet.
|
|
"uglify-js": "https://github.com/mishoo/UglifyJS2/tarball/b1febde3e9be32b9d88918ed733efc3796e3f143"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export(['CleanCSSProcess', 'UglifyJSMinify']);
|
|
api.add_files('minifiers.js', 'server');
|
|
});
|