https://github.com/erbesharat/joy-loader
A webpack loader for Joy
https://github.com/erbesharat/joy-loader
javascript joy webpack webpack-loader
Last synced: about 2 months ago
JSON representation
A webpack loader for Joy
- Host: GitHub
- URL: https://github.com/erbesharat/joy-loader
- Owner: erbesharat
- Created: 2017-12-17T12:00:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T11:07:51.000Z (over 7 years ago)
- Last Synced: 2025-03-24T21:23:01.180Z (2 months ago)
- Topics: javascript, joy, webpack, webpack-loader
- Language: JavaScript
- Size: 4.88 KB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# joy-loader
A webpack loader for [Joy](https://github.com/matthewmueller/joy)## Usage
1. You should first install [Go](https://golang.org/doc/install)
2. Then install [Joy](https://github.com/matthewmueller/joy#getting-started)
3. And install joy-loader with npm
```shell
npm install --save-dev webpack-joy-loader
```
4. Then use it in your webpack.config.js
```javascript
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](https://www.gnu.org/licenses/gpl-3.0.txt)