diff options
Diffstat (limited to 'package.js')
| -rw-r--r-- | package.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package.js b/package.js index e42eb9832..81d42a68f 100644 --- a/package.js +++ b/package.js @@ -1,9 +1,12 @@ // package metadata file for Meteor.js +/* jshint strict:false */ +/* global Package:true */ + Package.describe({ name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.', - version: '3.3.4', + version: '3.3.5', git: 'https://github.com/twbs/bootstrap.git' }); @@ -17,6 +20,6 @@ Package.onUse(function (api) { 'dist/fonts/glyphicons-halflings-regular.woff', 'dist/fonts/glyphicons-halflings-regular.woff2', 'dist/css/bootstrap.css', - 'dist/js/bootstrap.js', + 'dist/js/bootstrap.js' ], 'client'); }); |
