Skip to content

Commit

Permalink
还是得全改成相对路径
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Jun 28, 2024
1 parent e258e79 commit 0a40549
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/editorTable/editorTable.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Table } from "src/constants";
import { env } from "src/env";
import { Table } from "../constants";
import { env } from "../env";
import * as vscode from "vscode";
import * as y3 from 'y3-helper';

Expand Down
2 changes: 1 addition & 1 deletion src/editorTable/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export * from './editorTableProvider';
export * from './CSV/CSVimporter';
export * from './CSV/CSVeditor';
import { test } from './EXCEL/test';
import * as language from 'src/editorTable/language';
import * as language from './language';

vscode.commands.registerCommand('y3-helper.testExcel', () => {
test();
Expand Down
4 changes: 2 additions & 2 deletions src/editorTable/language.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as vscode from 'vscode';
import { env } from 'src/env';
import { env } from '../env';
import * as y3 from 'y3-helper';
import { hash } from 'src/utility';
import { hash } from '../utility';

class Language extends vscode.Disposable {
private disposeList: vscode.Disposable[] = [];
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import * as metaBuilder from './metaBuilder';
import { excelExporter } from './editorTable/EXCEL/excelExporter';
import * as debug from './debug';
import { EditorLauncher } from './launchEditor';
import * as editorTable from 'src/editorTable';
import * as editorTable from './editorTable';

class Helper {
private context: vscode.ExtensionContext;
Expand Down

0 comments on commit 0a40549

Please sign in to comment.