aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.eslintignore1
-rw-r--r--package.js12
2 files changed, 7 insertions, 6 deletions
diff --git a/.eslintignore b/.eslintignore
index 6d874bc36..ae6baae7e 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -4,4 +4,3 @@
/_gh_pages/
/js/coverage/
/site/static/sw.js
-/package.js
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')
+})