diff options
| author | Chris Rebert <[email protected]> | 2015-07-27 18:47:16 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-07-27 18:47:16 -0700 |
| commit | 335f486ba69a9b584fc6206c0cb7f6087fefca6c (patch) | |
| tree | b58b5556a6117c0928f418e9bfa9bc05ca46e467 | |
| parent | 76594dbb6aed95f3d50dce9af029aa4abeac0845 (diff) | |
| parent | 88ccbf3f93d7dfeefd2e1695c4115a535fd2d98a (diff) | |
| download | bootstrap-335f486ba69a9b584fc6206c0cb7f6087fefca6c.tar.xz bootstrap-335f486ba69a9b584fc6206c0cb7f6087fefca6c.zip | |
Merge pull request #16877 from Profab/for-plugin-preview
Add support for Meteor 1.2
| -rw-r--r-- | package.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package.js b/package.js index 81d42a68f..9b98df951 100644 --- a/package.js +++ b/package.js @@ -18,7 +18,9 @@ Package.onUse(function (api) { 'dist/fonts/glyphicons-halflings-regular.svg', 'dist/fonts/glyphicons-halflings-regular.ttf', 'dist/fonts/glyphicons-halflings-regular.woff', - 'dist/fonts/glyphicons-halflings-regular.woff2', + 'dist/fonts/glyphicons-halflings-regular.woff2' + ], 'client', { isAsset: true }); + api.addFiles([ 'dist/css/bootstrap.css', 'dist/js/bootstrap.js' ], 'client'); |
