项目代码结构调整
This commit is contained in:
parent
6c78c9e430
commit
7d0c1a0a3e
@ -1,6 +1,6 @@
|
||||
import { EOL } from '../../type-definition/EOLType';
|
||||
import { EOL } from '../../types/EOLType';
|
||||
import { SupportCase } from './types/SupportCaseType';
|
||||
import { TransformTextResult } from '../../type-definition/TransformTextResultType';
|
||||
import { TransformTextResult } from '../../types/TransformTextResultType';
|
||||
import { transformMutliLineText, transformText } from '../../utils/transform';
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as vscode from 'vscode';
|
||||
import { EOL } from "../../type-definition/EOLType";
|
||||
import { EOL } from "../../types/EOLType";
|
||||
import { cyclicConvertCaseOrder } from "./types/SupportCaseType";
|
||||
import { caseConversion } from "./conversion";
|
||||
import { isStringArrayEqual, stringListArrayDuplicateRemoval } from '../../utils/utils';
|
||||
|
@ -16,7 +16,7 @@ import { handleQuickPick } from './handler/quick-pick-handler';
|
||||
import { commands } from './core/variable-convert/types/SupportCaseType';
|
||||
import { createStatusBarItem, updateStatusBarItemVisable } from './handler/status-bar-handler';
|
||||
import * as CyclicConversion from './core/variable-convert/cyclic-conversion';
|
||||
import { EOL } from './type-definition/EOLType';
|
||||
import { EOL } from './types/EOLType';
|
||||
import { getUserConfigurations } from './utils/user-configuration';
|
||||
|
||||
// This method is called when your extension is activated
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as vscode from 'vscode';
|
||||
import { EOL } from '../type-definition/EOLType';
|
||||
import { EOL } from '../types/EOLType';
|
||||
import { caseConversion } from '../core/variable-convert/conversion';
|
||||
import { SupportCase } from '../core/variable-convert/types/SupportCaseType';
|
||||
import { isStringArrayEqual } from '../utils/utils';
|
||||
|
@ -1,9 +1,9 @@
|
||||
import * as vscode from 'vscode';
|
||||
import QuickPickItemEx from "../type-definition/QuickPickItemExType";
|
||||
import QuickPickItemEx from "./types/QuickPickItemExType";
|
||||
import { QuickPickSupportCaseItem, quickPickSupportCases } from '../core/variable-convert/types/SupportCaseType';
|
||||
import { TransformTextResult } from '../type-definition/TransformTextResultType';
|
||||
import { TransformTextResult } from '../types/TransformTextResultType';
|
||||
import { transformMutliSelectionText } from '../utils/transform';
|
||||
import { EOL } from '../type-definition/EOLType';
|
||||
import { EOL } from '../types/EOLType';
|
||||
import { caseConversion } from '../core/variable-convert/conversion';
|
||||
import { isStringArrayEqual } from '../utils/utils';
|
||||
import { getUserConfigurations } from '../utils/user-configuration';
|
||||
|
@ -8,7 +8,7 @@ import { TestCase, TestCaseGroup } from './types/TestCaseType';
|
||||
import { transformMutliLineText, transformText } from '../utils/transform';
|
||||
import { caseConversion } from '../core/variable-convert/conversion';
|
||||
import { SupportCase } from '../core/variable-convert/types/SupportCaseType';
|
||||
import { TransformTextResult } from '../type-definition/TransformTextResultType';
|
||||
import { TransformTextResult } from '../types/TransformTextResultType';
|
||||
// import * as myExtension from '../../extension';
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { EOL } from "../../type-definition/EOLType";
|
||||
import { EOL } from "../../types/EOLType";
|
||||
|
||||
export type TestCaseGroup = {
|
||||
group: string
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { TransformTextResult } from "../type-definition/TransformTextResultType";
|
||||
import { TransformTextResult } from "../types/TransformTextResultType";
|
||||
|
||||
const logDebugInfo = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user