mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
Package.describe({
|
|
name: "linter-plugin",
|
|
summary: "Use this package to enable Plugin.registerLinter",
|
|
version: "1.0.0"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
// XXX BBP add a use that forces you to be using a new enough version of
|
|
// meteor.
|
|
api.addFiles('enable-register-linter.js', 'server');
|
|
});
|