add webhook package to workspaces

This commit is contained in:
Mads Rasmussen
2024-06-03 14:14:25 +02:00
parent 5e3cca5146
commit ea40cf7bea
3 changed files with 20 additions and 3 deletions

View File

@@ -9,7 +9,8 @@
"version": "14.1.0",
"license": "MIT",
"workspaces": [
"./src/packages/dictionary"
"./src/packages/dictionary",
"./src/packages/webhook"
],
"dependencies": {
"@types/diff": "^5.2.1",
@@ -6808,6 +6809,10 @@
"resolved": "src/packages/dictionary",
"link": true
},
"node_modules/@umbraco-backoffice/webhook": {
"resolved": "src/packages/webhook",
"link": true
},
"node_modules/@umbraco-ui/uui": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@umbraco-ui/uui/-/uui-1.8.1.tgz",
@@ -21166,6 +21171,9 @@
"url": "https://github.com/sponsors/wooorm"
}
},
"src/packages/dictionary": {}
"src/packages/dictionary": {
"name": "@umbraco-backoffice/dictionary"
},
"src/packages/webhook": {}
}
}

View File

@@ -125,7 +125,8 @@
"url": "https://umbraco.com"
},
"workspaces": [
"./src/packages/dictionary"
"./src/packages/dictionary",
"./src/packages/webhook"
],
"scripts": {
"backoffice:test:e2e": "npx playwright test",

View File

@@ -0,0 +1,8 @@
{
"name": "@umbraco-backoffice/webhook",
"private": true,
"type": "module",
"scripts": {
"build": "vite build"
}
}