babel-file-loader
Load files into memory to be parsed & traversed using Babylon/Babel
Last updated 6 years ago by thejameskyle .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install babel-file-loader 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 2.0.0                                ...           latest (6 years ago)

5 Versions

  • 2.0.0                                ...           6 years ago
  • 1.0.3                                ...           7 years ago
  • 1.0.2                                ...           8 years ago
  • 1.0.1                                ...           8 years ago
  • 1.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Total 0
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (7)
Dev Dependencies (2)

© 2010 - cnpmjs.org x YWFE | Home | YWFE