Add Nx script executors to woocommerce plugin

This commit is contained in:
roykho 2021-11-05 08:19:36 -07:00
parent 7dc6ae6316
commit b86a66168e
No known key found for this signature in database
GPG Key ID: 7B36C0EA25795714
1 changed files with 21 additions and 1 deletions

View File

@ -1,5 +1,25 @@
{
"root": "plugins/woocommerce/",
"sourceRoot": "plugins/woocommerce",
"projectType": "application"
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "build"
}
},
"lint": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "lint:js"
}
},
"test": {
"executor": "@nrwl/workspace:run-script",
"options": {
"script": "test:e2e"
}
}
}
}