0.6.5 • Published 8 months ago

@iyio/babel-plugin-macros v0.6.5

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

IYIO babel-plugin-macros

Used to register environment variables with the @iyio/common registerConfig function

Usage

The follow will be transformed

import { registerConfig, STATIC_ENV_VARS } from '@iyio/common';
registerConfig(null,STATIC_ENV_VARS);

-to-

import { registerConfig, STATIC_ENV_VARS } from '@iyio/common';
registerConfig(null,{
    NX_ENV_VAR_A:'value a from the environment',
    NX_ENV_VAR_B:'value b from the environment',
});

STATIC_ENV_VARS must be passed as an argument to the registerConfig for the substation to occur.

Plugin options

  • identifier : string

    • The identifier to replace assignment value for.
    • default = 'STATIC_ENV_VARS'
  • func : string

    • The name of the function being call to replace the identifier argument of
    • default = 'registerConfig'
  • prefix : string | null | false

    • Environment variables must be prefixed with this value to be added.
    • default = 'NX_'
  • ignore : string[]

    • An array of environment variables to ignore
    • default = []

  • mode : 'keep' | 'drop' | 'both'
    • Determines what is done with the prefix
    • default = 'both'

Workspace level configuration

To enable the plugin workspace wide add the plugin to the root babel.config.json file

/babel.config.json

{
    "babelrcRoots": ["*"],
    "plugins": ["@iyio/babel-plugin-macros"]
}

NextJS Project level configuration

To enable the plugin in a NextJS project add the plugin to the .babelrc file in the project. If .babelrc does not exist create it.

/packages/{NextJsProject}/.babelrc

{
    "presets": ["@nrwl/next/babel"],
    "plugins": ["@iyio/babel-plugin-macros"]
}

If workspace level configuration has been enabled

{
    "presets": ["@nrwl/next/babel"]
}
0.6.3

9 months ago

0.6.5

8 months ago

0.6.4

9 months ago

0.6.0

9 months ago

0.5.18

12 months ago

0.5.17

1 year ago

0.5.16

1 year ago

0.5.15

1 year ago

0.5.14

1 year ago

0.5.13

1 year ago

0.5.12

1 year ago

0.5.11

2 years ago

0.5.10

2 years ago

0.5.3

2 years ago

0.5.2

2 years ago

0.5.1

2 years ago

0.5.0

2 years ago

0.4.9

2 years ago

0.4.8

2 years ago

0.4.10

2 years ago

0.3.0

2 years ago

0.3.6

2 years ago

0.3.5

2 years ago

0.4.0

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.29

3 years ago

0.0.28

3 years ago

0.0.27

3 years ago

0.0.26

3 years ago

0.0.25

3 years ago

0.0.24

3 years ago

0.0.23

3 years ago

0.0.22

3 years ago

0.0.21

3 years ago

0.0.20

3 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago