Skip to content

Commit 04ab1b7

Browse files
committed
chore: add package nx project config
1 parent 84b6975 commit 04ab1b7

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

packages/channel-connector/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"name": "@ai-devkit/channel-connector",
3+
"nx": {
4+
"name": "channel-connector"
5+
},
36
"version": "0.2.0",
47
"description": "Generic messaging bridge for connecting to external communication platforms",
58
"main": "dist/index.js",
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "channel-connector",
3+
"root": "packages/channel-connector",
4+
"sourceRoot": "packages/channel-connector/src",
5+
"projectType": "library",
6+
"targets": {
7+
"build": {
8+
"executor": "nx:run-commands",
9+
"options": {
10+
"command": "npm run build",
11+
"cwd": "packages/channel-connector"
12+
}
13+
},
14+
"test": {
15+
"executor": "nx:run-commands",
16+
"options": {
17+
"command": "npm run test",
18+
"cwd": "packages/channel-connector"
19+
}
20+
},
21+
"lint": {
22+
"executor": "nx:run-commands",
23+
"options": {
24+
"command": "npm run lint",
25+
"cwd": "packages/channel-connector"
26+
}
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)