Skip to content

@bem-react/pack@1.1.0

Choose a tag to compare

@yarastqt yarastqt released this 23 Oct 12:59
· 90 commits to master since this release

Features

  • add hook for create sideEffects (b510cfe)

example

useTypeScriptPlugin({
  configPath: './tsconfig.prod.json',
  onCreateSideEffects(path) {
    if (path.includes('pointerfocus/index.js')) {
      return ['*.js']
    }
  },
})