mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
Package.describe({
|
|
version: '0.1.3',
|
|
summary: 'Show build errors in client when using HMR',
|
|
documentation: 'README.md',
|
|
devOnly: true
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use([
|
|
'ecmascript'
|
|
]);
|
|
api.export('DevErrorOverlay', 'client');
|
|
api.addFiles('client.js', 'modern');
|
|
});
|