babel-file-loader

2.0.0 • Public • Published

babel-file-loader

Load files into memory to be parsed & traversed using Babylon/Babel

import {loadImportSync} from 'babel-file-loader';
 
export function plugin() {
  return {
    visitor: {
      ImportDefaultDeclaration(path) {
        let file = loadImportSync(path);
 
        file.path.traverse({
          ExportDefaultDeclaration() {
            console.log('Found matching export default');
          },
        });
      },
    },
  },
};

API

resolveFilePath{Async,Sync}(path, filePath, resolveOpts)

Resolve a filePath relative to the file a path belongs to. Returns string.

resolveImportFilePath{Async,Sync}(path, resolveOpts)

Resolve an import declaration path to extract a file path. Returns string.

loadFile{Async,Sync}(filePath, parserOpts)

Load and parse a file from a filePath. Returns File.

loadImport{Async,Sync}(path, resolveOpts, parserOpts)

Load and parse a file from an import declaration path. Returns File.

Readme

Keywords

none

Package Sidebar

Install

npm i babel-file-loader

Weekly Downloads

1,045

Version

2.0.0

License

MIT

Unpacked Size

6.22 kB

Total Files

4

Last publish

Collaborators

  • thejameskyle