mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
456 B
JavaScript
18 lines
456 B
JavaScript
Package.describe({
|
|
name: 'caching-compiler',
|
|
version: '2.0.0',
|
|
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');
|
|
});
|