Skip to content

Commit be4e7ad

Browse files
chore: update package versions to 2.8.0 and adjust dependency tags (#36)
1 parent e3cce10 commit be4e7ad

13 files changed

Lines changed: 40 additions & 20 deletions

File tree

apps/streaming-demo/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"runtime": "ts-node src/runtime-server.ts"
1212
},
1313
"dependencies": {
14-
"@enclavejs/broker": "0.1.0",
15-
"@enclavejs/client": "0.1.0",
16-
"@enclavejs/types": "0.1.0",
17-
"enclave-vm": "2.7.0",
14+
"@enclavejs/broker": "*",
15+
"@enclavejs/client": "*",
16+
"@enclavejs/types": "*",
17+
"enclave-vm": "*",
1818
"express": "^4.21.0",
1919
"zod": "^3.24.0"
2020
},

libs/ast-guard/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/ast-guard/src",
55
"projectType": "library",
6-
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
6+
"tags": ["scope:libs", "scope:publishable"],
77
"targets": {
88
"build-tsc": {
99
"executor": "@nx/js:tsc",

libs/enclave-vm/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/enclave-vm/src",
55
"projectType": "library",
6-
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
6+
"tags": ["scope:libs", "scope:publishable"],
77
"implicitDependencies": ["ast-guard"],
88
"targets": {
99
"test-perf": {

libs/enclavejs-broker/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/enclavejs-broker/src",
55
"projectType": "library",
6-
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
6+
"tags": ["scope:libs", "scope:publishable"],
77
"implicitDependencies": ["enclavejs-types", "enclavejs-stream", "enclave-vm"],
88
"targets": {
99
"build-tsc": {

libs/enclavejs-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enclavejs/client",
3-
"version": "0.1.1",
3+
"version": "2.8.0",
44
"description": "Browser and Node.js client SDK for the EnclaveJS streaming runtime",
55
"author": "AgentFront <info@agentfront.dev>",
66
"homepage": "https://github.com/agentfront/enclave",

libs/enclavejs-client/project.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/enclavejs-client/src",
55
"projectType": "library",
6-
"tags": ["scope:enclavejs", "type:lib"],
6+
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
77
"targets": {
88
"build-tsc": {
99
"executor": "@nx/js:tsc",
@@ -31,6 +31,13 @@
3131
},
3232
"lint": {
3333
"executor": "@nx/eslint:lint"
34+
},
35+
"nx-release-publish": {
36+
"executor": "@nx/js:release-publish",
37+
"dependsOn": ["build"],
38+
"options": {
39+
"packageRoot": "libs/enclavejs-client/dist"
40+
}
3441
}
3542
}
3643
}

libs/enclavejs-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enclavejs/react",
3-
"version": "0.1.1",
3+
"version": "2.8.0",
44
"description": "React hooks and components for the EnclaveJS streaming runtime",
55
"author": "AgentFront <info@agentfront.dev>",
66
"homepage": "https://github.com/agentfront/enclave",
@@ -31,7 +31,7 @@
3131
}
3232
},
3333
"dependencies": {
34-
"@enclavejs/client": "0.1.1"
34+
"@enclavejs/client": "2.8.0"
3535
},
3636
"peerDependencies": {
3737
"react": ">=17.0.0"

libs/enclavejs-react/project.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/enclavejs-react/src",
55
"projectType": "library",
6-
"tags": [],
6+
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
77
"targets": {
88
"build-tsc": {
99
"executor": "@nx/js:tsc",
@@ -38,6 +38,13 @@
3838
"options": {
3939
"lintFilePatterns": ["libs/enclavejs-react/**/*.ts", "libs/enclavejs-react/**/*.tsx"]
4040
}
41+
},
42+
"nx-release-publish": {
43+
"executor": "@nx/js:release-publish",
44+
"dependsOn": ["build"],
45+
"options": {
46+
"packageRoot": "libs/enclavejs-react/dist"
47+
}
4148
}
4249
}
4350
}

libs/enclavejs-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enclavejs/runtime",
3-
"version": "0.1.1",
3+
"version": "2.8.0",
44
"description": "Standalone runtime worker for EnclaveJS - deployable execution environment",
55
"author": "AgentFront <info@agentfront.dev>",
66
"homepage": "https://github.com/agentfront/enclave",

libs/enclavejs-runtime/project.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/enclavejs-runtime/src",
55
"projectType": "library",
6+
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
67
"targets": {
78
"build-tsc": {
89
"executor": "@nx/js:tsc",
@@ -44,6 +45,13 @@
4445
},
4546
"lint": {
4647
"executor": "@nx/eslint:lint"
48+
},
49+
"nx-release-publish": {
50+
"executor": "@nx/js:release-publish",
51+
"dependsOn": ["build"],
52+
"options": {
53+
"packageRoot": "libs/enclavejs-runtime/dist"
54+
}
4755
}
4856
},
4957
"implicitDependencies": ["enclavejs-types", "enclavejs-stream", "enclave-vm"]

0 commit comments

Comments
 (0)