From 54b8482223288a4d5df41267f3c9235bab06c15e Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 24 Mar 2017 17:12:23 +0100 Subject: add minionlivesmatter --- .../templates/assets/bootstrap/package.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 minionlivesmatter/templates/assets/bootstrap/package.js (limited to 'minionlivesmatter/templates/assets/bootstrap/package.js') diff --git a/minionlivesmatter/templates/assets/bootstrap/package.js b/minionlivesmatter/templates/assets/bootstrap/package.js new file mode 100644 index 0000000..ce21bad --- /dev/null +++ b/minionlivesmatter/templates/assets/bootstrap/package.js @@ -0,0 +1,19 @@ +// package metadata file for Meteor.js + +/* global Package:true */ + +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: '4.0.0-alpha.6', + git: 'https://github.com/twbs/bootstrap.git' +}); + +Package.onUse(function (api) { + api.versionsFrom('METEOR@1.0'); + api.use('jquery', 'client'); + api.addFiles([ + 'dist/css/bootstrap.css', + 'dist/js/bootstrap.js' + ], 'client'); +}); -- cgit v1.3.1