forked from markcellus/carousel-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbt-config.js
More file actions
33 lines (31 loc) · 730 Bytes
/
bt-config.js
File metadata and controls
33 lines (31 loc) · 730 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
33
module.exports = {
build: {
files: {
'dist/carousel.js': ['src/carousel.js']
},
browserifyOptions: {
standalone: 'Carousel',
transform: [
[
"babelify",
{
"plugins": [
[
"add-module-exports"
]
]
}
]
]
},
minifyFiles: {
'dist/carousel-min.js': ['dist/carousel.js']
},
bannerFiles: ['dist/*']
},
tests: {
mocha: {
files: ['tests/*.js']
}
}
};