Sha256: be7b974fc08bed4f6bd4739013a50f628c18e520af23e7e6c5d7ec4bf46f9a9d

Contents?: true

Size: 508 Bytes

Versions: 6

Compression:

Stored size: 508 Bytes

Contents

import resolve from "@rollup/plugin-node-resolve"
import includePaths from 'rollup-plugin-includepaths';
import commonjs from '@rollup/plugin-commonjs';

export default [
  {
    input: "./index.js",
    output: [
      {
        file: "../app/assets/javascripts/bard-file.js",
        format: "es",
      },
    ],
    context: "window",
    external: [
      "@rails/activestorage",
    ],
    plugins: [
      resolve(),
      includePaths({
        paths: "src",
      }),
      commonjs(),
    ]
  },
]

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bard-file_field-0.1.5 bard-file/rollup.config.js
bard-file_field-0.1.4 bard-file/rollup.config.js
bard-file_field-0.1.3 bard-file/rollup.config.js
bard-file_field-0.1.2 bard-file/rollup.config.js
bard-file_field-0.1.1 bard-file/rollup.config.js
bard-file_field-0.1.0 bard-file/rollup.config.js