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(webpack): add webpack plugin #11966

Merged
merged 1 commit into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cz-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = {
description: 'anything testing specific (e.g., jest or cypress)',
},
{ name: 'web', description: 'anything Web specific' },
{ name: 'webpack', description: 'anything Webpack specific' },
],

allowTicketNumber: true,
Expand Down
12 changes: 12 additions & 0 deletions docs/generated/packages/web.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
"description": "Init Web Plugin.",
"type": "object",
"properties": {
"bundler": {
"type": "string",
"description": "The bundler to use.",
"enum": ["webpack", "none"],
"default": "webpack"
},
"unitTestRunner": {
"description": "Adds the specified unit test runner",
"type": "string",
Expand Down Expand Up @@ -105,6 +111,12 @@
"enum": ["babel", "swc"],
"default": "babel"
},
"bundler": {
"type": "string",
"description": "The bundler to use.",
"enum": ["webpack", "none"],
"default": "webpack"
},
"linter": {
"description": "The tool to use for running lint checks.",
"type": "string",
Expand Down
Loading