GitXplorerGitXplorer
P

directory-module-webpack-plugin

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
fa6f78757b997d61f54d8bf38844cc8d23880fb7

add badges

PPerlmint committed 7 years ago
Verified
45c51c28d90f5582aa0ffee89339dfae3acfa659

normalize paths for supporting windows fix #4

PPerlmint committed 7 years ago
Verified
f6b9b2e32fb34b7683400ec61c7a0a2b7f4c38e2

add deep test case

PPerlmint committed 7 years ago
Verified
bce63de0756e24962667c53f4c1f4142c660d720

asynchronize unit test

PPerlmint committed 7 years ago
Verified
38428e784c7677a960b8c62380f0d8ed3788a2fb

0.1.1

PPerlmint committed 7 years ago
Verified
47cc6e53f0892e7cd3bfcd8b5ad06d7ae9c6cf61

split function

PPerlmint committed 7 years ago

README

The README file for this repository.

npm version Build Status Coverage Status Maintainability GitHub license

directory-module-webpack-plugin

Generate module based on directory contents

Usage

Configuration

import DirectoryModulePlugin from "directory-module-webpack-plugin";

export = {
    entry: "./index.js",
    plugins: [
        new DirectoryModulePlugin({
            object: "json-object",
            array: "json-array",
            ts_object: "ts-object",
        }),
    ],
};

Source code

import object_directory_contents from "./object";