babel-plugin-s2s-d-action-constants

0.1.0 • Public • Published

babel-plugin-s2s-d-action-constants

s2s plugin for d

Install

$ yarn add --dev babel-plugin-s2s-d-action-constants

Example

IN:

// @flow
export type Action = Increment | Decrement

OUT:

// @flow
export const INCREMENT: 'INCREMENT' = 'INCREMENT'
export const DECREMENT: 'DECREMENT' = 'DECREMENT'

With prefix

export S2S_ACTION_CONSTANTS_PREFIX=app

// @flow
export type Action = Increment | Decrement

OUT:

// @flow
export const INCREMENT: 'app/INCREMENT' = 'app/INCREMENT'
export const DECREMENT: 'app/DECREMENT' = 'app/DECREMENT'

Usage

{
  ['s2s-d-action-constants']
}

Readme

Keywords

none

Package Sidebar

Install

npm i babel-plugin-s2s-d-action-constants

Weekly Downloads

3

Version

0.1.0

License

MIT

Unpacked Size

6.35 kB

Total Files

6

Last publish

Collaborators

  • akameco