Skip to content

erbesharat/joy-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

joy-loader

A webpack loader for Joy

Usage

  1. You should first install Go
  2. Then install Joy
  3. And install joy-loader with npm
npm install --save-dev webpack-joy-loader
  1. Then use it in your webpack.config.js
module.exports = {
  module: {
    rules: [{
      test: /\.go$/,
      use: {
        loader: "webpack-joy-loader",
        options: {}
      }
    }]
  }
}

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

GPLv3