forked from Zodiase/meteor-mdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
92 lines (81 loc) · 2.36 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
var mdlVersion = '1.1.0';
var revision = 0;
var assetRevision = 0;
var mdiVersion = '2.1.3';
var packageVersion = (revision > 0) ? mdlVersion + '_' + revision : mdlVersion,
assetPackageVersion = (assetRevision > 0) ? mdlVersion + '_' + assetRevision : mdlVersion;
Package.describe({
name: 'zodiase:mdl',
version: packageVersion,
summary: 'A wrapper package for Google\'s Material Design Lite.',
git: 'https://github.com/Zodiase/meteor-mdl.git',
documentation: 'README.md'
});
Package.onUse(function (api) {
'use strict';
api.versionsFrom('1.2.1');
api.use([
'ecmascript',
'isobuild:[email protected]',
'fourseven:[email protected]'
]);
api.use('zodiase:check@=0.0.4');
api.imply('zodiase:mdl-assets@=' + assetPackageVersion);
api.imply('zodiase:material-design-icons-fonts@=' + mdiVersion);
log('Warning! Breaking Compatibility!');
log('Since version 1.0.6_4, now the settings file IS required. Without it, most of the functions of this package will be turned off!');
log('Also if you have been using the SASS assets provided by this package from version 1.0.6_3, now you have to load the assets from package `zodiase:mdl-assets` instead.');
log('These are permanent changes. Sorry for the inconvenience!');
api.export(['MDl'], 'client');
api.addFiles([
'setup.js',
'check.js'
], 'client');
// Patches.
api.addFiles([
'patch/autoUpgrade.js'
], 'client');
// Add helper scss file for fixing asset loading path.
api.addFiles('theme.scss', 'client', {isImport: true});
});
Package.onTest(function (api) {
api.use([
'ecmascript',
'tinytest',
'jquery',
'zodiase:mdl'
]);
api.addFiles([
'zodiase-mdl.json',
'tests/export.js',
'tests/patch-autoUpgrade.js'
], 'client');
});
Package.registerBuildPlugin({
name: 'build',
use: [
'ecmascript',
'zodiase:check@=0.0.4',
'zodiase:mdl-assets@=' + assetPackageVersion
],
sources: [
'plugin/build.js'
],
npmDependencies: {
'extend': '3.0.0',
'clone': '1.0.2'
}
});
var logLabel = 'zodiase:mdl';
var log = function () {
var args = sliceArguments(arguments);
args.unshift('*', logLabel, '>');
console.log.apply(console, args);
};
var sliceArguments = function (_arguments) {
var args = new Array(_arguments.length);
for (var i = 0, n = _arguments.length; i < n; i++) {
args[i] = _arguments[i];
}
return args;
};