diff options
| author | XhmikosR <[email protected]> | 2020-10-31 09:30:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-31 09:30:57 +0200 |
| commit | 831fbd271fec760e8e651e0a9189ee031a66c62c (patch) | |
| tree | fe3ab3e3f09a8a7966924a53815442070003eb75 /package.js | |
| parent | b63066d630fd15acc98191825b9b513a911e4139 (diff) | |
| download | bootstrap-831fbd271fec760e8e651e0a9189ee031a66c62c.tar.xz bootstrap-831fbd271fec760e8e651e0a9189ee031a66c62c.zip | |
Lint: stop ignoring package.js (#32021)
Diffstat (limited to 'package.js')
| -rw-r--r-- | package.js | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/package.js b/package.js index f1012b8bd..f567b2541 100644 --- a/package.js +++ b/package.js @@ -1,16 +1,18 @@ // package metadata file for Meteor.js +/* eslint-env meteor */ + Package.describe({ name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.', version: '5.0.0-alpha2', git: 'https://github.com/twbs/bootstrap.git' -}); +}) -Package.onUse(function (api) { - api.versionsFrom('[email protected]'); +Package.onUse(api => { + api.versionsFrom('[email protected]') api.addFiles([ 'dist/css/bootstrap.css', 'dist/js/bootstrap.js' - ], 'client'); -}); + ], 'client') +}) |
