Skip to content

Commit

Permalink
It is now working
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Sep 24, 2023
1 parent ea8c4dd commit b3c3c6c
Show file tree
Hide file tree
Showing 15 changed files with 329 additions and 239 deletions.
264 changes: 264 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2582,6 +2582,7 @@
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vscode/vsce": "^2.21.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.1",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/_server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"clean": "shx rm -rf dist temp out coverage",
"test-watch": "vitest",
"test": "vitest run",
"watch": "npm run concurrently npm:watch:esbuild npm:watch:api npm:watch:tsc",
"watch": "concurrently npm:watch:esbuild npm:watch:api npm:watch:tsc",
"watch:esbuild": "npm run build:esbuild -- --watch",
"watch:api": "npm run build:api.d.ts -- --watch",
"watch:tsc": "npm run build:tsc -- --watch"
Expand Down
50 changes: 0 additions & 50 deletions packages/client/src/webview/utilities/json-rpc.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/client/src/webview/views/AppView.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Disposable, Webview, WebviewOptions } from 'vscode';
import { Uri } from 'vscode';
import { createConnectionToWebview } from 'vscode-webview-rpc/extension';

import { createApi } from '../api';
import { getNonce } from '../utilities/getNonce';
import { getUri } from '../utilities/getUri';
import { createConnectionToWebview } from '../utilities/json-rpc';

/**
* This class manages the state and behavior of HelloWorld webview panels.
Expand Down
Loading

0 comments on commit b3c3c6c

Please sign in to comment.