https://github.com/twbs/bootstrap
Raw File
Tip revision: 8a628b943cf31ca0a002c08af661a95772480225 authored by Mark Otto on 18 January 2018, 18:29:48 UTC
Remove -Pre from Nuget install info since we're stable now /cc @supergibbs
Tip revision: 8a628b9
.babelrc.js
module.exports = {
  presets: [
    [
      '@babel/env',
      {
        loose: true,
        modules: false,
        exclude: ['transform-typeof-symbol']
      }
    ]
  ],
  plugins: [
    process.env.PLUGINS && 'transform-es2015-modules-strip',
    '@babel/proposal-object-rest-spread'
  ].filter(Boolean)
};
back to top