Nuxt/scripts/rollup/nuxt-legacy.js
Clark Du ef7a42649d misc: improve coverage and packaging (#3121)
nuxt-start and nuxt/legacy are also coming!
2018-03-28 02:58:17 +04:30

25 lines
400 B
JavaScript

import babel from 'rollup-plugin-babel'
import config from './rollup.config'
export default config({
name: 'nuxt-legacy',
input: './lib/nuxt-legacy.js',
plugins: [
babel({
exclude: 'node_modules/**',
presets: [
[
'env',
{
'modules': false
}
]
],
plugins: [
'external-helpers'
]
})
]
})