Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit b43cb93

Browse files
committed
fix: fix vscode plugin bugs
- package using npm (microsoft/vscode-vsce#432) - add .vscodeignore - remove invalid import
1 parent 75796a2 commit b43cb93

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src/
2+
tsconfig*.json
3+
.gitignore

packages/vscode-slonik-live-server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"scripts": {
1313
"postinstall": "yarn build",
1414
"build": "rimraf dist && tsc -p tsconfig.build.json",
15-
"vscode:prepublish": "npm run compile",
15+
"vscode:prepublish": "npm install --no-save && npm run compile",
1616
"compile": "tsc -p ./",
1717
"watch": "tsc -watch -p ./"
1818
},

packages/vscode-slonik-live-server/src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import 'ts-slonik-live-server-plugin';
2-
31
import { DeepPartial } from 'ts-essentials';
42
import { PluginConfig } from 'ts-slonik-live-server-plugin/dist/lib/config';
53
import { ExtensionContext, extensions, window, workspace } from 'vscode';

0 commit comments

Comments
 (0)