Skip to content

Commit

Permalink
Lint: stop ignoring package.js (twbs#32021)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Nov 5, 2020
1 parent bbfd22f commit 30641eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
/_gh_pages/
/js/coverage/
/site/sw.js
/package.js
14 changes: 8 additions & 6 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
// 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: '4.5.3',
git: 'https://github.com/twbs/bootstrap.git'
});
})

Package.onUse(function (api) {
api.versionsFrom('METEOR@1.0');
api.use('jquery', 'client');
Package.onUse(api => {
api.versionsFrom('METEOR@1.0')
api.use('jquery', 'client')
api.addFiles([
'dist/css/bootstrap.css',
'dist/js/bootstrap.js'
], 'client');
});
], 'client')
})

0 comments on commit 30641eb

Please sign in to comment.