0.5.16 • Published 1 month ago

@iyio/babel-plugin-macros v0.5.16

Weekly downloads
-
License
-
Repository
-
Last release
1 month 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.5.16

1 month ago

0.5.15

2 months ago

0.5.14

2 months ago

0.5.13

3 months ago

0.5.12

3 months ago

0.5.11

4 months ago

0.5.10

5 months ago

0.5.3

5 months ago

0.5.2

5 months ago

0.5.1

5 months ago

0.5.0

5 months ago

0.4.9

5 months ago

0.4.8

6 months ago

0.4.10

5 months ago

0.3.0

7 months ago

0.3.6

7 months ago

0.3.5

7 months ago

0.4.0

6 months ago

0.2.5

8 months ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.0.29

1 year ago

0.0.28

1 year ago

0.0.27

1 year ago

0.0.26

1 year ago

0.0.25

1 year ago

0.0.24

1 year ago

0.0.23

1 year ago

0.0.22

1 year ago

0.0.21

1 year ago

0.0.20

1 year ago

0.0.19

1 year ago

0.0.18

1 year ago

0.0.17

1 year ago

0.0.16

1 year ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

2 years ago

0.0.10

2 years ago