[e2e-utils-playwright] Configure changelogger (#52668)
This commit is contained in:
parent
775742fd3b
commit
fdde2a44c7
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
Configure changelogger
|
|
@ -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
|
@ -12,5 +12,8 @@
|
||||||
"pnpm": "9.1.3"
|
"pnpm": "9.1.3"
|
||||||
},
|
},
|
||||||
"main": "src/index.js",
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue