-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocs-bundle.js
25 lines (24 loc) · 918 Bytes
/
docs-bundle.js
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
var stealTools = require('steal-tools');
var path = require('path');
stealTools.build({
main: 'can-admin/docs-main',
config: path.join(__dirname, 'package.json!npm'),
bundle: [
'can-admin/components/dropdown-menu/demo/dropdown',
'can-admin/components/filter-widget/demo/filter',
'can-admin/components/data-admin/demo/admin',
'can-admin/components/form-widget/demo/form',
'can-admin/components/list-table/demo/listTable',
'can-admin/components/modal-dialog/demo/dialog',
'can-admin/components/nav-container/demo/nav',
'can-admin/components/paginate-widget/demo/paginate',
'can-admin/components/property-table/demo/propertyTable',
'can-admin/components/toast-container/demo/toast'
]
}, {
removeDevelopmentCode: false,
bundleSteal: false,
bundleAssets: true,
sourceMaps: true,
dest: 'docs/can-admin'
});