Skip to content

Commit

Permalink
fix: Refactor Clean up unused and redundant packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dineug committed Oct 19, 2024
1 parent e75b8c8 commit 5152787
Show file tree
Hide file tree
Showing 114 changed files with 336 additions and 362 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ build
.docusaurus
.cache-loader

packages/erd-editor-vscode/public
packages/erd-editor-vscode/public-legacy
packages/vscode-extension/public

# Log files
npm-debug.log*
Expand Down
25 changes: 13 additions & 12 deletions erd-editor.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@
"path": "packages/erd-editor-shiki-worker",
},
{
"name": "erd-editor-vscode",
"path": "packages/erd-editor-vscode",
"name": "vscode-extension",
"path": "packages/vscode-extension",
},
{
"name": "erd-editor-vscode-webview",
"path": "packages/erd-editor-vscode-webview",
"name": "vscode-webview",
"path": "packages/vscode-webview",
},
{
"name": "erd-editor-vscode-bridge",
"path": "packages/erd-editor-vscode-bridge",
"name": "vscode-bridge",
"path": "packages/vscode-bridge",
},
{
"name": "erd-editor-replication-store-worker",
"path": "packages/erd-editor-replication-store-worker",
"name": "vscode-replication-store-worker",
"path": "packages/vscode-replication-store-worker",
},
{
"name": "erd-editor-intellij-webview",
"path": "packages/erd-editor-intellij-webview",
"name": "intellij-webview",
"path": "packages/intellij-webview",
},
{
"name": "erd-editor-app",
"path": "packages/erd-editor-app",
"name": "app",
"path": "packages/app",
},
{
"name": "schema-sql-parser",
Expand Down Expand Up @@ -86,6 +86,7 @@
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"styled-components.vscode-styled-components",
"tobermory.es6-string-html",
],
},
}
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dineug/erd-editor-replication-store-worker",
"name": "@dineug/erd-editor-vscode-replication-store-worker",
"version": "0.1.0",
"private": true,
"type": "module",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@dineug/erd-editor": "workspace:*",
"@dineug/erd-editor-shiki-worker": "workspace:*",
"@dineug/erd-editor-vscode-bridge": "workspace:*",
"@dineug/erd-editor-replication-store-worker": "workspace:*",
"@dineug/erd-editor-vscode-replication-store-worker": "workspace:*",
"@dineug/shared": "workspace:*",
"base64-arraybuffer": "^1.0.2"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
setGetShikiServiceCallback,
setImportFileCallback,
} from '@dineug/erd-editor';
import { ReplicationStoreWorker } from '@dineug/erd-editor-replication-store-worker';
import {
AnyAction,
Appearance,
Expand All @@ -18,6 +17,7 @@ import {
vscodeSaveThemeAction,
webviewReplicationAction,
} from '@dineug/erd-editor-vscode-bridge';
import { ReplicationStoreWorker } from '@dineug/erd-editor-vscode-replication-store-worker';
import { encode } from 'base64-arraybuffer';

const bridge = new Emitter();
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = env => {
const config = {
entry: './src/index',
output: {
path: resolvePath('../erd-editor-vscode/public'),
path: resolvePath('../vscode-extension/public'),
publicPath: './',
filename: 'bundle.[contenthash:8].js',
chunkFilename: '[id].[contenthash:8].js',
Expand Down
Loading

0 comments on commit 5152787

Please sign in to comment.