ellioseven / rollup-plugin-watch-transform

Watches transformed files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rollup-plugin-transform-watch

Watches transformed files.

Uses addWatchFile to add additional files to be monitored in watch mode so that changes to these files will trigger rebuilds.

import watch from "rollup-plugin-watch-transform"

export default {
  input: "src/index.js",
  output: "dist/index.js",
  plugins: [
    watch({
      files: ["src/scss"]
    })
  ]
}

About

Watches transformed files.


Languages

Language:JavaScript 100.0%