-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
36 lines (34 loc) · 800 Bytes
/
package.js
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
31
32
33
34
35
36
/* eslint-disable */
Package.describe({
name: 'noland:crater-bunny',
version: '0.1.9',
summary: 'Make landing pages super fast with SSR, async, inline, and auto-cleaned CSS',
git: 'https://github.com/nolandg/meteor-crater-bunny',
documentation: 'README.md',
});
Package.onUse(function(api){
api.versionsFrom('1.4.1.1');
api.use([
'ecmascript',
'isobuild:minifier-plugin@1.0.0',
'webapp',
]);
api.mainModule('./lib/crater-bunny.js');
});
Package.registerBuildPlugin({
name: 'css-minifier',
use: [
'ecmascript',
'minifier-css@1.0.0',
],
npmDependencies: {
'css': '2.2.1',
'source-map': '0.5.6',
'postcss': '5.0.21',
'app-module-path': '1.0.6',
'babel-preset-meteor': '6.12.0',
},
sources: [
'plugin/css-minifier.js',
],
});