Skip to content

Commit

Permalink
Attempt to make VSCode compile (#1077)
Browse files Browse the repository at this point in the history
<!-- ELLIPSIS_HIDDEN -->



> [!IMPORTANT]
> Update version in `package.json` and fix import path in `index.ts`.
> 
>   - **Version Update**:
>     - Update version in `package.json` from `0.1.1` to `0.62.0`.
>   - **Import Path Fix**:
> - Correct import path of `packageJson` in `index.ts` to
`../../../package.json`.
> 
> <sup>This description was created by </sup>[<img alt="Ellipsis"
src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup>
for 7457f35. It will automatically
update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
hellovai authored Oct 21, 2024
1 parent a8b4224 commit fe088fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion typescript/vscode-ext/packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "baml-client",
"displayName": "Baml - Insider - Client",
"description": "This is the Insider Build of the Baml VS Code extension (only use it if you are also using the dev version of the CLI).",
"version": "0.1.1",
"version": "0.62.0",
"publisher": "Gloo",
"repository": "https://github.com/BoundaryML/baml",
"homepage": "https://boundaryml.com",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type { BamlVSCodePlugin } from '../types'
import { URI } from 'vscode-uri'
import StatusBarPanel from '../../panels/StatusBarPanel'

import packageJson from '../../../../package.json'
import packageJson from '../../../package.json'

const BamlConfig = z.optional(
z.object({
Expand Down
2 changes: 1 addition & 1 deletion typescript/vscode-ext/packages/vscode/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"skipLibCheck": true,
"noUnusedParameters": false
},
"include": ["src", "../package.json"],
"include": ["src"],
"exclude": ["node_modules", ".vscode-test"]
}

0 comments on commit fe088fd

Please sign in to comment.