diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-01-24 12:33:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-01-24 12:33:51 +0000 |
commit | 3ea39841c8049525e31e9f4d6300f0c60cdb42de (patch) | |
tree | 855de60a8872eafb5911acd303aedcdbfe713a73 /package.js | |
parent | Inital commit. (diff) | |
download | bootstrap-html-3ea39841c8049525e31e9f4d6300f0c60cdb42de.tar.xz bootstrap-html-3ea39841c8049525e31e9f4d6300f0c60cdb42de.zip |
Adding upstream version 5.2.3+dfsg.upstream/5.2.3+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'package.js')
-rw-r--r-- | package.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package.js b/package.js new file mode 100644 index 0000000..c9f1ead --- /dev/null +++ b/package.js @@ -0,0 +1,18 @@ +// package metadata file for Meteor.js + +/* eslint-env meteor */ + +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: '5.2.3', + git: 'https://github.com/twbs/bootstrap.git' +}) + +Package.onUse(api => { + api.versionsFrom('METEOR@1.0') + api.addFiles([ + 'dist/css/bootstrap.css', + 'dist/js/bootstrap.js' + ], 'client') +}) |