Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 378 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 378 Bytes

ion-loader

A webpack loader for the ion language.

Install

npm install ion-loader --save

Usage

Right on the require:

var file = require("ion!./file.ion")

Webpack config (better):

{
  module: {
    loaders: [
      { test: /\.ion$/, loader: 'ion' }
    ]
  }
}

License

MIT