SergProduction / effector-logger_babel-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Insatall

git clone this
cd ../yourproject
npm i -D ../effector-logger_babel-plugin

This plugin replaces the name import effector with the effector-logger

Setting

.babelrc

true way include

{
  "env": {
    "dev": {
      "plugins": [ "@effector-logger/babel-plugin" ]
    }
    "production": {
      "plugins": [ // don't including this here effector logger plugin ]
    }
  }
}

alternative way

{
  "plugins": [
    ["@effector-logger/babel-plugin", { off: false | true }]
  ]
}

About


Languages

Language:JavaScript 100.0%