The Wayback Machine - https://web.archive.org/web/20210120210324/https://github.com/fleck/bootstrap.native-loader
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

bootstrap.native-loader

This is a webpack loader for bootstrap.native.

yarn add bootstrap.native
yarn add --dev bootstrap.native-loader

In your webpack config file, in the rules array, add this object. This will compile all of the bootstrap.native modules.

{
  test: /bootstrap\.native/,
  use: {
    loader: 'bootstrap.native-loader'
  }
}

There's also an only option. (cannot be used at the same time as the ignore option)

{
  test: /bootstrap\.native/,
  use: {
    loader: 'bootstrap.native-loader',
    options: {
      only: ['modal', 'dropdown']
    }
  }
}

Also, an ignore option. (cannot be used at the same time as the only option)

{
  test: /bootstrap\.native/,
  use: {
    loader: 'bootstrap.native-loader',
    options: {
      ignore: ['carousel', 'button']
    }
  }
}

A full list of components that can be listed under ignore or only are shown below.

['alert', 'button',  'carousel', 'collapse', 'dropdown', 'modal', 'popover', 'scrollspy', 'tab', 'toast', 'tooltip']

Once you have the above setup in your add the code below to include the custom build in your bundle.

import 'bootstrap.native';

or if you use require

require('bootstrap.native');

About

Webpack loader for bootstrap.native.

Resources

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  
You can’t perform that action at this time.