-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.js
More file actions
30 lines (26 loc) · 648 Bytes
/
package.js
File metadata and controls
30 lines (26 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Package.describe({
summary: 'Minifier for Meteor with PostCSS processing - use Autoprefixer and others with ease',
version: '2.0.8',
name: 'juliancwirko:postcss',
git: 'https://github.com/juliancwirko/meteor-postcss.git'
});
Package.registerBuildPlugin({
name: 'minifier-postcss',
use: [
'ecmascript@0.15.2',
'minifier-css@1.5.4',
'tmeasday:check-npm-versions@1.0.2'
],
npmDependencies: {
'source-map': '0.5.6',
'app-module-path': '2.2.0'
},
sources: [
'plugin/minify-css.js'
]
});
Package.onUse(function (api) {
api.use('isobuild:minifier-plugin@1.0.0');
});
Package.onTest(function (api) {
});