Remote Specs Testing package: Add new package (#44419)

This commit is contained in:
Paul Sealock 2024-02-08 12:46:26 +13:00 committed by GitHub
parent a0b0b81b35
commit c6e11562ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 1104 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Changelog
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

View File

@ -0,0 +1,4 @@
Significance: minor
Type: add
Add project scaffolding

View File

@ -0,0 +1,31 @@
{
"name": "woocommerce/remote-specs-validation",
"description": "Remote specs testing suite",
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Automattic\\WooCommerce\\Tests\\RemoteSpecsValidation\\": "src/"
}
},
"require-dev": {
"automattic/jetpack-changelogger": "^3.3.0"
},
"extra": {
"changelogger": {
"formatter": {
"filename": "../../../tools/changelogger/class-legacy-core-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": "changelog.md"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
{
"name": "@woocommerce/remote-specs-validation",
"description": "Remote specs testing suite",
"main": "index.js",
"scripts": {
"changelog": "composer install && composer exec -- changelogger"
},
"license": "GPL-3.0-or-later"
}

View File

@ -1,5 +1,6 @@
packages:
- 'packages/js/*'
- 'packages/php/*'
- 'plugins/*'
- 'plugins/woocommerce/client/legacy'
- 'tools/monorepo-merge'