Skip to content

@vanilla-extract/[email protected]

Choose a tag to compare

@vanilla-extract-ci vanilla-extract-ci released this 26 May 01:53
· 34 commits to master since this release
2ac5a6b

Minor Changes

  • #1592 35d6b3f Thanks @askoufis! - createCompiler: Add enableFileWatcher option

    By default, the compiler sets up its own file watcher.
    This option allows you to disable it if necessary, such as during a production build.

    EXAMPLE USAGE:

    const compiler = createCompiler({
      root: process.cwd(),
      enableFileWatcher: false
    });