Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/streaming-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"runtime": "ts-node src/runtime-server.ts"
},
"dependencies": {
"@enclavejs/broker": "0.1.0",
"@enclavejs/client": "0.1.0",
"@enclavejs/types": "0.1.0",
"enclave-vm": "2.7.0",
"@enclavejs/broker": "*",
"@enclavejs/client": "*",
"@enclavejs/types": "*",
"enclave-vm": "*",
"express": "^4.21.0",
"zod": "^3.24.0"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/ast-guard/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/ast-guard/src",
"projectType": "library",
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
"tags": ["scope:libs", "scope:publishable"],
"targets": {
"build-tsc": {
"executor": "@nx/js:tsc",
Expand Down
2 changes: 1 addition & 1 deletion libs/enclave-vm/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclave-vm/src",
"projectType": "library",
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
"tags": ["scope:libs", "scope:publishable"],
"implicitDependencies": ["ast-guard"],
"targets": {
"test-perf": {
Expand Down
2 changes: 1 addition & 1 deletion libs/enclavejs-broker/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-broker/src",
"projectType": "library",
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
"tags": ["scope:libs", "scope:publishable"],
"implicitDependencies": ["enclavejs-types", "enclavejs-stream", "enclave-vm"],
"targets": {
"build-tsc": {
Expand Down
2 changes: 1 addition & 1 deletion libs/enclavejs-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enclavejs/client",
"version": "0.1.1",
"version": "2.8.0",
"description": "Browser and Node.js client SDK for the EnclaveJS streaming runtime",
"author": "AgentFront <info@agentfront.dev>",
"homepage": "https://github.com/agentfront/enclave",
Expand Down
9 changes: 8 additions & 1 deletion libs/enclavejs-client/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-client/src",
"projectType": "library",
"tags": ["scope:enclavejs", "type:lib"],
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
"targets": {
"build-tsc": {
"executor": "@nx/js:tsc",
Expand Down Expand Up @@ -31,6 +31,13 @@
},
"lint": {
"executor": "@nx/eslint:lint"
},
"nx-release-publish": {
"executor": "@nx/js:release-publish",
"dependsOn": ["build"],
"options": {
"packageRoot": "libs/enclavejs-client/dist"
}
}
}
}
4 changes: 2 additions & 2 deletions libs/enclavejs-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enclavejs/react",
"version": "0.1.1",
"version": "2.8.0",
"description": "React hooks and components for the EnclaveJS streaming runtime",
"author": "AgentFront <info@agentfront.dev>",
"homepage": "https://github.com/agentfront/enclave",
Expand Down Expand Up @@ -31,7 +31,7 @@
}
},
"dependencies": {
"@enclavejs/client": "0.1.1"
"@enclavejs/client": "2.8.0"
},
"peerDependencies": {
"react": ">=17.0.0"
Expand Down
9 changes: 8 additions & 1 deletion libs/enclavejs-react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-react/src",
"projectType": "library",
"tags": [],
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
"targets": {
"build-tsc": {
"executor": "@nx/js:tsc",
Expand Down Expand Up @@ -38,6 +38,13 @@
"options": {
"lintFilePatterns": ["libs/enclavejs-react/**/*.ts", "libs/enclavejs-react/**/*.tsx"]
}
},
"nx-release-publish": {
"executor": "@nx/js:release-publish",
"dependsOn": ["build"],
"options": {
"packageRoot": "libs/enclavejs-react/dist"
}
}
}
}
2 changes: 1 addition & 1 deletion libs/enclavejs-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enclavejs/runtime",
"version": "0.1.1",
"version": "2.8.0",
"description": "Standalone runtime worker for EnclaveJS - deployable execution environment",
"author": "AgentFront <info@agentfront.dev>",
"homepage": "https://github.com/agentfront/enclave",
Expand Down
8 changes: 8 additions & 0 deletions libs/enclavejs-runtime/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-runtime/src",
"projectType": "library",
"tags": ["scope:enclavejs", "scope:publishable", "type:lib"],
"targets": {
"build-tsc": {
"executor": "@nx/js:tsc",
Expand Down Expand Up @@ -44,6 +45,13 @@
},
"lint": {
"executor": "@nx/eslint:lint"
},
"nx-release-publish": {
"executor": "@nx/js:release-publish",
"dependsOn": ["build"],
"options": {
"packageRoot": "libs/enclavejs-runtime/dist"
}
}
},
"implicitDependencies": ["enclavejs-types", "enclavejs-stream", "enclave-vm"]
Expand Down
2 changes: 1 addition & 1 deletion libs/enclavejs-stream/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-stream/src",
"projectType": "library",
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
"tags": ["scope:libs", "scope:publishable"],
"implicitDependencies": ["enclavejs-types"],
"targets": {
"build-tsc": {
Expand Down
2 changes: 1 addition & 1 deletion libs/enclavejs-types/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/enclavejs-types/src",
"projectType": "library",
"tags": ["scope:libs", "scope:publishable", "versioning:independent"],
"tags": ["scope:libs", "scope:publishable"],
"targets": {
"build-tsc": {
"executor": "@nx/js:tsc",
Expand Down
8 changes: 3 additions & 5 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,20 @@
},
"release": {
"projects": ["libs/*"],
"projectsRelationship": "independent",
"projectsRelationship": "fixed",
"version": {
"conventionalCommits": false,
"preVersionCommand": "npx nx run-many -t build",
"git": {
"commit": true,
"tag": true,
"commitMessage": "chore(release): bump versions\n\n{projectName}@{version}"
"commitMessage": "chore(release): v{version}"
}
},
"changelog": {
"projectChangelogs": false,
"workspaceChangelog": false
},
"releaseTag": {
"pattern": "{projectName}@{version}"
}
"releaseTagPattern": "v{version}"
}
}
Loading