How to use the parcel-bundler/src/Logger.verbose function in parcel-bundler

To help you get started, we’ve selected a few parcel-bundler examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github QQuick / Transcrypt / parcel / asset.js View on Github external
async collectDependencies() {
        let count = 0;
        let runinfo = this.getTranscryptRunInfo();
        if (runinfo && runinfo.modules) {
            for (let mod of runinfo.modules) {
                if (mod.source) {
                    this.addDependency(mod.source, {includedInParent: true});
                    count++;
                }
            }
            if (this.options['watch']) {
                logger.verbose(`${LOG_PREFIX} Added ${count} watch dependencies...`);
            }
        }
    }