Skip to content

Commit

Permalink
Merge pull request twbs#17693 from rclai/patch-1
Browse files Browse the repository at this point in the history
Update support for Meteor 1.2
  • Loading branch information
cvrebert committed Sep 24, 2015
2 parents 911312d + 7f45ac2 commit 99d243a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ Package.describe({
Package.onUse(function (api) {
api.versionsFrom('[email protected]');
api.use('jquery', 'client');
api.addFiles([
var assets = [
'dist/fonts/glyphicons-halflings-regular.eot',
'dist/fonts/glyphicons-halflings-regular.svg',
'dist/fonts/glyphicons-halflings-regular.ttf',
'dist/fonts/glyphicons-halflings-regular.woff',
'dist/fonts/glyphicons-halflings-regular.woff2'
], 'client', { isAsset: true });
];
if (api.addAssets) {
api.addAssets(assets, 'client');
} else {
api.addFiles(assets, 'client', { isAsset: true });
}
api.addFiles([
'dist/css/bootstrap.css',
'dist/js/bootstrap.js'
Expand Down

0 comments on commit 99d243a

Please sign in to comment.