Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CLI command to output current configuration in full #3537

Open
SetTrend opened this issue Feb 8, 2022 · 28 comments
Open

Add CLI command to output current configuration in full #3537

SetTrend opened this issue Feb 8, 2022 · 28 comments
Assignees
Labels

Comments

@SetTrend
Copy link
Contributor

SetTrend commented Feb 8, 2022

Feature request

I propose to add a new command to Webpack CLI that outputs a project's current configuration in full detail – including default values.

The output should be a full-fledged JS file, with actual values used for each single configuration property. If no configuration value is provided, the actual and the computed default value should be added in a comment next to the value (which usually is undefined, as it is undefined).

For example, given a configuration like this:

module.exports =
{
  mode: "development",
};

… the proposed Webpack CLI config command:

npx webpack config [config-path [config-name]]

… should output the following to stdout:


Excerpt only:

const path = require('path');

module.exports = {
  target: undefined /* "web" */,
  mode: "development",
  entry: undefined /* "./src" */,
  output: {
    path: undefined /* path.resolve(__dirname, "dist") */ /* "C:\repos\myproject\dist" */,
    filename: undefined /* "[name].js" */,
    publicPath: undefined /* "/assets/" */,

  // ...
  // ...
  // ...

  optimization: {
    chunkIds: undefined /* "size" */,
    moduleIds: undefined /* "size" */,
    mangleExports: undefined /* "size" */,
    minimize: undefined /* true */,
    minimizer: undefined /* null */
  )
}

Please note the following in the above excerpt:

  1. mode is the only property not being output as undefined, because it's being defined in the configuration file.
  2. mode is the only property without a default value comment, because no default is applied to it.
  3. Suppose, no browserlist file exists in this example. Then the actual default value for the target property is "web", as is depicted in the excerpt above.
  4. The actual default value for the output.path property is a computation (path.resolve(__dirname, "dist")). This will result in a second comment being added to the property, containing the computed default value, which is "C:\repos\myproject\dist".

What is motivation or use case for adding/changing the behavior?

Although there are many useful default values being applied to Webpack when a small configuration in a Webpack configuration file is used, it's still obscure which actual values are being used for all untouched Webpack configuration properties. So, it's hard to figure out unwanted or less than perfect build behaviour.

Moreover, with the proposed output, GUI tools can be written to provide form based helpers or linters for editing/optimizing webpack configurations.

What is the expected behavior?

A new Webpack CLI command, config, should output a configuration's actual and default values. Values not defined in the config file should output undefined as the property value plus an additional comment added, showing their actual default value. If that actual default value is a computation, a second comment should be added to the output, showing the computed value.

NB: Redirection of the output to a file should be possible.


How should this be implemented in your opinion?

An additional CLI command should be written, resulting in a syntax like the following:

npx webpack config [config-path [config-name]]

Are you willing to work on this yourself?

no

@vankop
Copy link
Member

vankop commented Feb 8, 2022

your idea could be useful, but full webpack config really big + there is no way to serialize object like parameters (plugins objects, functions) correctly

@alexander-akait
Copy link
Member

alexander-akait commented Feb 8, 2022

@vankop in theory we can export https://github.com/webpack/webpack/blob/main/lib/config/normalization.js#L528 and output default values, functions/classes/etc will be outputed as serialized

@SetTrend
Copy link
Contributor Author

SetTrend commented Feb 8, 2022

@vankop: Yes, you are right. I expect the output to be large. In my vision, the main target of this output are supposed to be linters and external tools, not human beings.

But actually, an optional, additional parameter to the proposed Webpack CLI command could be used to filter the output, e.g.:

npx webpack config [[--file ]config-path] [--name config-name] [--include included-properties]

… so, given the following existed …

npx webpack config --include output,cache

… the output could be similar to:

module.exports = {
  output: {
    library: {
      name: 'someLibName',
      type: undefined /* this */,
      // ...
    },
    filename: 'someLibName.js',
    auxiliaryComment: undefined /* null */,
    // ...
  },
  cache: {
    type: 'filesystem',
    allowCollectingMemory: true,
    version: undefined /* null */,
    // ...
  },
};

… having only two properties and their values included.

@alexander-akait
Copy link
Member

I think we will move this issue in webpack-cli repo after we expose some methods from webpack

@SetTrend
Copy link
Contributor Author

SetTrend commented Feb 8, 2022

Sounds great!

Please pardon me for choosing the wrong repo. I was not aware of the other repository.

@SetTrend
Copy link
Contributor Author

@alexander-akait:

Would you want to put this improvement request on your roadmap?

@alexander-akait
Copy link
Member

You can send a PR, it is already in ROADMAP, but I don't have time on this currenty, sorry

@SetTrend
Copy link
Contributor Author

Perfect. I was just asking you because the webpack-bot was about to close this issue. Unfortunately I cannot afford the time to contribute at this time, though I'd very much liked to do so.

@webpack-bot
Copy link

Issue was closed because of inactivity.

If you think this is still a valid issue, please file a new issue with additional information.

@SetTrend
Copy link
Contributor Author

@alexander-akait: I believe this issue is still important.

@alexander-akait
Copy link
Member

Yeah 👍

@SetTrend
Copy link
Contributor Author

So, this isn't going to be implemented..?

@alexander-akait
Copy link
Member

No, but you can help us

@alexander-akait alexander-akait transferred this issue from webpack/webpack Dec 14, 2022
@alexander-akait
Copy link
Member

@SetTrend Let's put it here, because it is the job of webpack-cli

@SetTrend
Copy link
Contributor Author

Unfortunately I cannot help. I'm currently working for a bluechip customer with a tight deadline. I'm not able to lift further workload, I'm afraid.

@alexander-akait
Copy link
Member

@SetTrend Don't worry, just the question

@webpack-bot
Copy link

This issue had no activity for at least half a year.

It's subject to automatic issue closing if there is no activity in the next 15 days.

@SetTrend
Copy link
Contributor Author

*ping*

@evenstensberg evenstensberg self-assigned this Nov 26, 2023
@samrudh3125
Copy link

Do you want the output of this command in the terminal or as an extra file created

@SetTrend
Copy link
Contributor Author

SetTrend commented Mar 1, 2024

I think StdOut is the perfect output channel. The output can be redirected then on demand.

@samrudh3125
Copy link

ok working on it

@samrudh3125
Copy link

async showConfig(){
const config=await fs.readFileSync(path.resolve(process.cwd(), "webpack.config.js"), "utf-8");
return config;
}
I have created a function here what should be the return type here since I didnt understand the types.ts completely

@samrudh3125
Copy link

Screenshot_20240302_210004
why is this error coming everytime

@SetTrend
Copy link
Contributor Author

SetTrend commented Mar 3, 2024

From what I can see from your code, you are reading from the webpack.config.js file. My request was to read the current in-memory configuration. Eventually the configuration that's active when there is no webpack.config.js file.

@samrudh3125
Copy link

Should I take the config from stdin then?

@samrudh3125
Copy link

I have completed the coding part should I delete the builtInOptions -c and --config-name?
Also what will be the difference between --config-name and --include

@samrudh3125
Copy link

@alexander-akait I have done all the coding jobs I just need a sample file or an api from where I can load all the options along with their default values

@alexander-akait
Copy link
Member

We have them in webpack core there are two function - you can get default value and normalize them

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants