trivago/parallel-webpack

Add option to disable config module loaders

Open

#95 opened on Apr 4, 2019

View on GitHub
 (2 comments) (0 reactions) (0 assignees)JavaScript (1,486 stars) (108 forks)batch import
enhancementhelp wanted

Description

Explain the problem

parallel-webpack uses interpret to load configuration files in different languages based on the file extension. This usually works great, but in some cases it may be unwanted behavior.

I have a build script that calls parallel-webpack using the Node API. This script is written in TypeScript and executed using ts-node. My configuration file is TypeScript as well and has the .ts extension. This causes parallel-webpack to add an additional TypeScript interpreter even though it is already running inside of ts-node.

Behaviour

parallel-webpack will break when trying to compile the .ts file that has already been transpiled to javascript by ts-node.

Workaround

I created a separate webpack.config.proxy.js, that only contains the following line:

module.exports = require('./webpack.config.ts');

This will prevent parallel-webpack from trying to interpret the config file as TypeScript.

Feature request

It would be nice to force parallel-webpack to interpret a file as plain javascript, even though it has a different file extension. For example:

var run = require('parallel-webpack').run,
    configPath = require.resolve('./webpack.config.ts');

run(configPath, { useConfigLoader: false });

Provide your Environment details

  • Node version: any
  • Operating System: any
  • webpack version: any
  • parallel-webpack version: 2.3.0

Contributor guide