component-webpack-resolver-plugin

Webpack plugin to resolve components based on dirname

Usage no npm install needed!

<script type="module">
  import componentWebpackResolverPlugin from 'https://cdn.skypack.dev/component-webpack-resolver-plugin';
</script>

README

Webpack Component Resolver Plugin

project status license build status dependencies status devDependencies status coverage status climate status

Webpack2 plugin to resolve components based on their dirname when an index file is not present.

Let you drop index.js files when you only want to export one file/component:

Usage

When you require a folder:

import BarComponent from './BarComponent';

You usually have to use an index.js file as an export proxy:

├── BarComponent
│   ├── BarComponent.js
│   └── index.js

With this plugin, you can clean up the structure and have working directory imports:

├── BarComponent
│   └── BarComponent.js

Quickstart

npm i --save-dev component-webpack-resolver-plugin
  1. You can use the raw plugin

    import ComponentResolverPlugin from 'component-webpack-resolver-plugin';
    // or // const ComponentResolverPlugin = require('component-webpack-resolver-plugin').default;
    
    resolve: {
      plugins: [new ComponentResolverPlugin('existing-directory', 'undescribed-raw-file')]
    }
    
  2. Or the provided factory function

    import {factory as componentResolverPluginFactory} from 'component-webpack-resolver-plugin';
    // or // const componentResolverPluginFactory = require('component-webpack-resolver-plugin').factory;
    
    resolve: {
      plugins: [componentResolverPluginFactory()]
    }
    

Available scripts

Script Description
start Alias of test:watch
test Run mocha unit tests
test:watch Run and watch mocha unit tests
lint Run eslint static tests
compile Compile the library
compile:watch Compile and watch the library

Authors

Olivier Louvignes

License

The MIT License

Copyright (c) 2016 Olivier Louvignes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.