[e2e-utils-playwright] Configure changelogger (#52668)

This commit is contained in:
Adrian Moldovan 2024-11-12 15:02:12 -05:00 committed by GitHub
parent 775742fd3b
commit fdde2a44c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 1105 additions and 1 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Configure changelogger

View File

@ -0,0 +1,32 @@
{
"name": "woocommerce/e2e-utils-playwright",
"description": "End-To-End (E2E) test Playwright utils for WooCommerce",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"require-dev": {
"automattic/jetpack-changelogger": "^3.3.0"
},
"config": {
"platform": {
"php": "7.4"
}
},
"extra": {
"changelogger": {
"formatter": {
"filename": "../../../tools/changelogger/class-package-formatter.php"
},
"types": {
"fix": "Fixes an existing bug",
"add": "Adds functionality",
"update": "Update existing functionality",
"dev": "Development related task",
"tweak": "A minor adjustment to the codebase",
"performance": "Address performance issues",
"enhancement": "Improve existing functionality"
},
"changelog": "NEXT_CHANGELOG.md"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -12,5 +12,8 @@
"pnpm": "9.1.3"
},
"main": "src/index.js",
"module": "build-module/index.js"
"module": "build-module/index.js",
"scripts": {
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger"
}
}