Webpack plugin that loads autohotkey files (ahk)
npm install --save-dev ahk-loader
Can be used with ExtractTextPlugin to extract an .ahk
file after build
const ExtractTextPlugin = require("extract-text-webpack-plugin");
//...
module.exports = {
module: {
loaders: [{
test: /\.ahk$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
use: [{
loader: 'ahk-loader'
}]
})
}]
}
}