0.0.5 ā€¢ Published 3 years ago

rollup-plugin-probe v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

rollup-plugin-probe

šŸ“Œ Probes for monitoring rollup hooks information.

Installation

npm install -D rollup-plugin-probe

Usage

Specify which hooks you will record and report by setting options for probe. Rollup hooks which are not set in options will be ignored and not be recorded.

// rollup.config.js

import probe from "rollup-plugin-probe";

export default {
    input: path.resolve(__dirname, "src/main.js"),
    plugins: [
        probe({
            options: {},        // probe record information in options hook
            transform: {},      // probe record information in transform hook
            outputOption: {},   // probe record information in outputOption hook
            generateBundle: {}, // probe record information in generateBundle hook
            ...
        })
    ],
}
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago