aurelia-bootstrap
Version:
Bootstrap components written in Aurelia.
41 lines (40 loc) • 944 B
JavaScript
// this file provides a list of unbundled files that
// need to be included when exporting the application
// for production.
module.exports = {
'list': [
'index.html',
'config.js',
'favicon.ico',
'LICENSE',
'jspm_packages/system.js',
'jspm_packages/system-polyfills.js',
'jspm_packages/system-csp-production.js',
'styles/*',
'states.json',
'images/flags/*'
],
// this section lists any jspm packages that have
// unbundled resources that need to be exported.
// these files are in versioned folders and thus
// must be 'normalized' by jspm to get the proper
// path.
'normalize': [
[
// include font-awesome.css and its fonts files
'font-awesome', [
'/css/font-awesome.min.css',
'/fonts/*'
]
],
[
'bootstrap',
['/css/bootstrap.min.css']
],
[
'bluebird', [
'/js/browser/bluebird.min.js'
]
]
]
};