Coder Social home page Coder Social logo

alias-loader's Introduction

alias-loader

A webpack loader used to resolve alias.

Typically when we use less in our project, the less-loader cannot resolve the aliases defined in webpack.config.resolve.alias.

Many times, our less file is imported to other one, and they may be in different contexts. For example:

If we have /root/styles/variables.less, and /root/components/button/button.less, we need the variables.less to be imported to button.less

Without alias-loader, we should import it like this:

  /* in button.less: */
  @import '../../styles/variable.less';
  /* ... other less code */

that means we must actually know what the relative between variables.less and button.less, and this is really messy.

But now, with alias-loader, things is extremely simple. we just need add alias-loader to less file resolve loaders, and define the alias, as:

  // in webpack.config.js, with webpack > v2.0.0
  resolve: {
    alias: {
      '@styles': path.join(__dirname, 'styles'),
      // ... and so on
    }
  },
  module: {
    rules: [{
      test: /\.less$/,
      use: ['style-loader', 'css-loader', 'less-laoder', 'alias-loader']
    }]
  }

  // also you can define your own aliases for alias-loader in the option:
  use: ['style-loader', 'css-loader', 'less-laoder', {
    loader: 'alias-loader',
    options: {
      alias: {
        // aliases for alias-loader here
      }
    }
  }]

then, just modify our button.less:

  /* in button.less: */
  @import '@styles/variables.less';
  /* ... other less code */

Also, you can use alias-laoder for any file typ as you want, but I really recomend it just on the case as .less files.

alias-loader's People

Contributors

vqun avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.