babel-plugin-import-remove-resource-query

1.0.0 • Public • Published

babel-plugin-import-remove-resource-query

Remove the resourceQuery param when importing modules via babel. Useful with Jest and babel-jest, that doesn't support resourceQueries

Example

import 'path/to/file?resourceQuery'
import foo from 'path/to/file?query'
import bar, { baz } from 'path/to/file?query'
require('path/to/file?resourceQuery')

becomes:

import 'path/to/file'
import foo from 'path/to/file'
import bar, { baz } from 'path/to/file'
require('path/to/file')

Installation

With npm do:

npm install babel-plugin-import-remove-resource-query --save-dev

With yarn do:

yarn add --dev babel-plugin-import-remove-resource-query

With babel-jest

In tour babelTransform.js file add the plugin like so:

module.exports = babelJest.createTransformer({
  plugins: [
    'babel-plugin-import-remove-resource-query'
  ]
})

/babel-plugin-import-remove-resource-query/

    Package Sidebar

    Install

    npm i babel-plugin-import-remove-resource-query

    Weekly Downloads

    9,918

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • hkjorgensen