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

feat: support size option for optimization.chunkIds config #8642

Merged
merged 1 commit into from
Dec 13, 2024

Conversation

inottn
Copy link
Collaborator

@inottn inottn commented Dec 7, 2024

Summary

close #8605

Checklist

  • Tests updated (or not required).
  • Documentation updated (or not required).

@github-actions github-actions bot added the release: feature release: feature related release(mr only) label Dec 7, 2024
Copy link

netlify bot commented Dec 7, 2024

Deploy Preview for rspack ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit 9e43b84
🔍 Latest deploy log https://app.netlify.com/sites/rspack/deploys/6754595cd002be00085a569f
😎 Deploy Preview https://deploy-preview-8642--rspack.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@inottn
Copy link
Collaborator Author

inottn commented Dec 7, 2024

There are multiple formats in this document, and I think they could be unified into one. However, I'm not sure which format would be the most appropriate.

| option | description |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `natural` | Use numeric ids in order of usage. |
| `named` | Use meaningful, easy-to-debug content as id. |
| `deterministic` | Use the hashed module identifier as the id to benefit from long-term caching. By default a minimum length of 3 digits is used. |

| option | description |
| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `'named'` | Readable ids for better debugging. |
| `'deterministic'` | Short numeric ids which will not be changing between compilation. Good for long term caching. By default a minimum length of 3 digits is used. |

| option | description |
| --------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| 'named' | Use meaningful, easy-to-debug content as id. This option is enabled by default in development mode |
| 'deterministic' | Use the hashed module identifier as the id to benefit from long-term caching. This option is enabled by default in production mode |
| true | Same as 'deterministic' |
| false | Keep original name. Good for readability and debugging. |

@chenjiahan
Copy link
Member

@LingyuCoder @ahabhgk cc~

Copy link
Collaborator

@ahabhgk ahabhgk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@ahabhgk
Copy link
Collaborator

ahabhgk commented Dec 13, 2024

'deterministic'
'named'
true
false

I prefer this format

@ahabhgk ahabhgk merged commit 52a3e42 into web-infra-dev:main Dec 13, 2024
37 checks passed
@inottn inottn deleted the feat/chunkIds-size branch December 13, 2024 07:09
@chenjiahan
Copy link
Member

I think most of these differences come from translation tools, their original intentions are similar. You can choose the more detailed version.

@inottn
Copy link
Collaborator Author

inottn commented Dec 13, 2024

I think most of these differences come from translation tools, their original intentions are similar. You can choose the more detailed version.

I wasn't clear enough in my expression. What I actually meant was the format of this area. 😄

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release: feature release: feature related release(mr only)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature]: Configuration optimization.chunkIds support "size"
3 participants