Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
5 changes: 4 additions & 1 deletion js/src/messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ export class Result {

readonly raw: RawData

constructor(rawData: RawData, public readonly isMainResult: boolean) {
constructor(
rawData: RawData,
public readonly isMainResult: boolean
) {
const data = { ...rawData }
delete data['type']
delete data['is_main_result']
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@
"name": "e2b-code-interpreter-root",
"private": true,
"scripts": {
"version": "changeset version && pnpm run -r postVersion",
"publish": "changeset publish && pnpm run -r postPublish",
"version": "pnpm changeset version && pnpm run -r postVersion",
"publish": "pnpm changeset publish && pnpm run -r postPublish",
"rm-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"lint": "pnpm --if-present --recursive run lint",
"format": "pnpm --if-present --recursive run format"
"format": "pnpm --if-present --recursive run format",
"changeset": "npx @changesets/cli"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@changesets/read": "^0.6.2",
"changeset": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.57.1",
"eslint-plugin-unused-imports": "^3.0.0",
"@stylistic/eslint-plugin-ts": "^1.6.2"
"@stylistic/eslint-plugin-ts": "^1.6.2",
"prettier": "^3.6.2"
},
"engines": {
"pnpm": ">=9.0.0 <10"
Expand Down
Loading