mirror of
https://github.com/meteor/meteor.git
synced 2026-01-09 07:38:15 -05:00
18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
Package.describe({
|
|
name: 'caching-compiler',
|
|
version: '2.0.1',
|
|
summary: 'An easy way to make compiler plugins cache',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Npm.depends({
|
|
'lru-cache': '6.0.0'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use(['ecmascript', 'random']);
|
|
api.addFiles(['caching-compiler.js'], 'server');
|
|
api.addFiles(['multi-file-caching-compiler.js'], 'server');
|
|
api.export(['CachingCompiler', 'MultiFileCachingCompiler'], 'server');
|
|
});
|