diff options
| author | Mark Otto <[email protected]> | 2015-06-19 16:26:33 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-06-19 16:26:33 -0700 |
| commit | bc29c016b7afefa2a9a42e94efaee58695049285 (patch) | |
| tree | ac294f7fbc18d4ba8c6b4179b7d1cbeb6481d70b /package.js | |
| parent | 8410afe0e104459a613f6232ad46334aa8b99fda (diff) | |
| parent | 3df2d085ed219a16848b96e90a72fcd5575a5270 (diff) | |
| download | bootstrap-bc29c016b7afefa2a9a42e94efaee58695049285.tar.xz bootstrap-bc29c016b7afefa2a9a42e94efaee58695049285.zip | |
Merge branch 'v4' into v4_builds
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'); }); |
