1.0.1 • Published 2 years ago

babel-plugin-inject-import v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

babel-plugin-inject-import

Babel plugin to inject some custom import statement.

Usage

Via .babel.config.json (Recommended)

.babel.config.json

{
    "plugins": [
        [
            "inject-import", 
            {
                "inject": [{
                    "name": null,
                    "path": "./style.css",
                    "file": "src/GanttReact/index.js"
                },{
                    "name": "test",
                    "path": "test",
                    "file": "src/GanttReact/index.js"
                }]
            }
        ]
    ]
}