Moved WCA Packages

This commit moves all of the packages in
`plugins/woocommerce-admin/packages` to their
new home in `packages/js`.
This commit is contained in:
Christopher Allford 2022-03-18 14:22:06 -07:00
parent 9479568e3d
commit d2d8d78be1
762 changed files with 1294 additions and 976 deletions

1
.gitignore vendored
View File

@ -40,6 +40,7 @@ npm-debug.log
build/
build-module/
build-style/
build-types/
dist/
# Project files

View File

@ -0,0 +1,26 @@
{
"root": "packages/js/admin-e2e-tests",
"sourceRoot": "packages/js/admin-e2e-tests/src",
"projectType": "library",
"targets": {
"changelog": {
"executor": "./tools/executors/changelogger:changelog",
"options": {
"action": "add",
"cwd": "packages/js/admin-e2e-tests"
}
},
"build": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "build"
}
},
"test": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "test"
}
}
}
}

View File

@ -0,0 +1,26 @@
{
"root": "packages/js/components",
"sourceRoot": "packages/js/components/src",
"projectType": "library",
"targets": {
"changelog": {
"executor": "./tools/executors/changelogger:changelog",
"options": {
"action": "add",
"cwd": "packages/js/components"
}
},
"build": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "build"
}
},
"test": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "test"
}
}
}
}

Some files were not shown because too many files have changed in this diff Show More