Skip to content

A webpack loader for autohotkey files, to take the source from #include

Notifications You must be signed in to change notification settings

tariqporter/ahk-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A webpack loader for autohotkey files, to take the source from #include

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published