Remote Specs Testing package: Add new package (#44419)
This commit is contained in:
parent
a0b0b81b35
commit
c6e11562ac
|
@ -0,0 +1,3 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: minor
|
||||||
|
Type: add
|
||||||
|
|
||||||
|
Add project scaffolding
|
|
@ -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
|
@ -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"
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
packages:
|
packages:
|
||||||
- 'packages/js/*'
|
- 'packages/js/*'
|
||||||
|
- 'packages/php/*'
|
||||||
- 'plugins/*'
|
- 'plugins/*'
|
||||||
- 'plugins/woocommerce/client/legacy'
|
- 'plugins/woocommerce/client/legacy'
|
||||||
- 'tools/monorepo-merge'
|
- 'tools/monorepo-merge'
|
||||||
|
|
Loading…
Reference in New Issue