The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-postcss/package.js

25 lines
448 B

Package.describe({
summary: 'Minifier for Meteor with PostCSS processing',
version: '1.0.0',
name: 'rocketchat:postcss'
});
Package.registerBuildPlugin({
name: 'minifier-postcss',
use: [
'ecmascript',
'minifier-css'
],
npmDependencies: {
'app-module-path': '2.2.0',
'postcss': '6.0.13',
'source-map': '0.5.6'
},
sources: [
'plugin/minify-css.js'
]
});
Package.onUse(function(api) {
api.use('isobuild:minifier-plugin');
});