forked from twbs/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
32 lines (29 loc) · 871 Bytes
/
Copy pathpackage.js
File metadata and controls
32 lines (29 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// package metadata file for Meteor.js
/* eslint-env meteor */
Package.describe({
name: 'alessandrofeitoza:aurora-user-interface', // https://atmospherejs.com/twbs/bootstrap
summary: 'Based on the most popular front-end framework: Bootstrap.',
version: '5.3.23',
git: 'https://github.com/secultce/aurora-ui.git'
})
Package.onUse(api => {
api.versionsFrom('METEOR@1.0')
api.addFiles([
'dist/css/accordion.css',
'dist/css/bootstrap.css',
'dist/js/bootstrap.js',
'dist/css/card.css',
'dist/css/color.css',
'dist/css/custom.css',
'dist/css/editor.css',
'dist/css/faq.css',
'dist/css/forms.css',
'dist/js/form-stepper.js',
'dist/css/layout.css',
'dist/css/navigation.css',
'dist/css/side-filters.css',
'dist/js/side-filters.js',
'dist/css/timeline.css',
'dist/css/snackbar.css',
], 'client')
})