New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bunchtogether/vite-plugin-flow

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bunchtogether/vite-plugin-flow

Support [Flow static type checking](https://flow.org/) in [Vite](https://vitejs.dev/)

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20K
increased by12.6%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-flow

Support Flow static type checking in Vite

Install

npm install @bunchtogether/vite-plugin-flow --save-dev

or

yarn add @bunchtogether/vite-plugin-flow --dev

Usage

import { flowPlugin, esbuildFlowPlugin } from '@bunchtogether/vite-plugin-flow';

export default {
  optimizeDeps: {
    esbuildOptions: {
      plugins: [esbuildFlowPlugin()]
    }
  },
  plugins: [
    flowPlugin()
  ]
}

API

Table of Contents

flowPlugin

Create a Vite plugin object

Parameters
  • options Object? Filter options (optional, default {include:/\.(flow|jsx?)$/,exclude:/node_modules/,flow:{all:false,pretty:false,ignoreUninitializedFields:false}})

    • options.include (string | Regexp | Array<(string | Regexp)>) Strings and/or regular expressions matching file paths to include (optional, default /\.(flow|jsx?)$/)
    • options.exclude (string | Regexp | Array<(string | Regexp)>) Strings and/or regular expressions matching file paths to exclude (optional, default /node_modules/)

Returns VitePlugin Returns esbuild plugin object

esbuildFlowPlugin

Create an esbuild plugin object

Parameters
  • filter RegExp Regular expression matching the path a files to be processed (optional, default /\.(flow|jsx?)$/)

  • loaderFunction Function Function that accepts the file path and returns the esbuild loader type (optional, default (path)=>(/\.jsx$/.test(path)?'jsx':'js'))

  • flowOptions Object Options to pass to flow-remove-types (optional, default {all:false,pretty:false,ignoreUninitializedFields:false})

    • flowOptions.all boolean If true, bypasses looking for an @flow pragma comment before parsing. (optional, default false)
    • flowOptions.pretty boolean If true, removes types completely rather than replacing with spaces. (optional, default false)
    • flowOptions.ignoreUninitializedFields boolean If true, removes uninitialized class fields (foo;, foo: string;) completely rather than only removing the type. THIS IS NOT SPEC COMPLIANT! Instead, use declare foo: string; for type-only fields. (optional, default false)

Returns EsbuildPlugin Returns esbuild plugin object

FAQs

Package last updated on 16 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc