mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
26 lines
500 B
JavaScript
26 lines
500 B
JavaScript
Package.describe({
|
|
name: 'standard-minifier-css',
|
|
version: '1.6.0',
|
|
summary: 'Standard css minifier used with Meteor apps by default.',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.registerBuildPlugin({
|
|
name: "minifyStdCSS",
|
|
use: [
|
|
'minifier-css'
|
|
],
|
|
npmDependencies: {
|
|
"@babel/runtime": "7.6.0",
|
|
"source-map": "0.6.1",
|
|
"lru-cache": "5.1.1"
|
|
},
|
|
sources: [
|
|
'plugin/minify-css.js'
|
|
]
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('isobuild:minifier-plugin@1.0.0');
|
|
});
|