Skip to content

Commit

Permalink
Move js/src/index.js one folder up (#32001)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Nov 1, 2020
1 parent 465135a commit 5664e72
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion build/rollup.config.js
Expand Up @@ -31,7 +31,7 @@ if (BUNDLE) {
}

module.exports = {
input: path.resolve(__dirname, '../js/src/index.js'),
input: path.resolve(__dirname, '../js/index.js'),
output: {
banner,
file: path.resolve(__dirname, `../dist/js/${fileDest}`),
Expand Down
34 changes: 34 additions & 0 deletions js/index.js
@@ -0,0 +1,34 @@
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.5.3): index.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/

import Alert from './src/alert'
import Button from './src/button'
import Carousel from './src/carousel'
import Collapse from './src/collapse'
import Dropdown from './src/dropdown'
import Modal from './src/modal'
import Popover from './src/popover'
import Scrollspy from './src/scrollspy'
import Tab from './src/tab'
import Toast from './src/toast'
import Tooltip from './src/tooltip'
import Util from './src/util'

export {
Util,
Alert,
Button,
Carousel,
Collapse,
Dropdown,
Modal,
Popover,
Scrollspy,
Tab,
Toast,
Tooltip
}
34 changes: 0 additions & 34 deletions js/src/index.js

This file was deleted.

0 comments on commit 5664e72

Please sign in to comment.