Skip to content

Commit

Permalink
fix: fix vscode plugin bugs
Browse files Browse the repository at this point in the history
- package using npm
  (microsoft/vscode-vsce#432)
- add .vscodeignore
- remove invalid import
  • Loading branch information
hoonoh committed Nov 17, 2021
1 parent 75796a2 commit b43cb93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/vscode-slonik-live-server/.vscodeignore
@@ -0,0 +1,3 @@
src/
tsconfig*.json
.gitignore
2 changes: 1 addition & 1 deletion packages/vscode-slonik-live-server/package.json
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"postinstall": "yarn build",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"vscode:prepublish": "npm run compile",
"vscode:prepublish": "npm install --no-save && npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
Expand Down
2 changes: 0 additions & 2 deletions packages/vscode-slonik-live-server/src/index.ts
@@ -1,5 +1,3 @@
import 'ts-slonik-live-server-plugin';

import { DeepPartial } from 'ts-essentials';
import { PluginConfig } from 'ts-slonik-live-server-plugin/dist/lib/config';
import { ExtensionContext, extensions, window, workspace } from 'vscode';
Expand Down

0 comments on commit b43cb93

Please sign in to comment.