mirror of https://github.com/rails/rails
42 lines
775 B
JavaScript
42 lines
775 B
JavaScript
import resolve from "@rollup/plugin-node-resolve"
|
|
import commonjs from "@rollup/plugin-commonjs"
|
|
import { terser } from "rollup-plugin-terser"
|
|
|
|
const terserOptions = {
|
|
mangle: false,
|
|
compress: false,
|
|
format: {
|
|
beautify: true,
|
|
indent_level: 2
|
|
}
|
|
}
|
|
|
|
export default [
|
|
{
|
|
input: "app/javascript/actiontext/index.js",
|
|
output: {
|
|
file: "app/assets/javascripts/actiontext.js",
|
|
format: "umd",
|
|
name: "ActionText"
|
|
},
|
|
plugins: [
|
|
resolve(),
|
|
commonjs(),
|
|
terser(terserOptions)
|
|
]
|
|
},
|
|
|
|
{
|
|
input: "app/javascript/actiontext/index.js",
|
|
output: {
|
|
file: "app/assets/javascripts/actiontext.esm.js",
|
|
format: "es"
|
|
},
|
|
plugins: [
|
|
resolve(),
|
|
commonjs(),
|
|
terser(terserOptions)
|
|
]
|
|
}
|
|
]
|