1.1.8 • Published 7 years ago

ahk-loader v1.1.8

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

ahk-loader

Webpack plugin that loads autohotkey files (ahk)

Installation

npm install --save-dev ahk-loader

Usage

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'
                }]
            })
        }]
    }
}
1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago