mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Cleanup
This commit is contained in:
parent
3a2d946cd6
commit
3f0ea40868
@ -353,7 +353,7 @@ describe('Detect', () => {
|
||||
).resolves.toBe(SupportedLanguage.TYPESCRIPT_4_9);
|
||||
});
|
||||
|
||||
it(`should return language typescript if the dependency is =TS4.9beta`, async () => {
|
||||
it(`should return language JavaScript if the dependency is =TS4.9beta`, async () => {
|
||||
await expect(
|
||||
detectLanguage({
|
||||
retrievePackageJson: () =>
|
||||
|
@ -207,7 +207,7 @@ export async function detectLanguage(packageManager: JsPackageManager) {
|
||||
(!eslintPluginStorybookVersion || semver.gte(eslintPluginStorybookVersion, '0.6.8'))
|
||||
) {
|
||||
language = SupportedLanguage.TYPESCRIPT_4_9;
|
||||
} else if (semver.lt(typescriptVersion, '3.8.0')) {
|
||||
} else {
|
||||
logger.warn(
|
||||
'Detected TypeScript < 4.9 or incompatible tooling, populating with JavaScript examples'
|
||||
);
|
||||
|
@ -1,152 +0,0 @@
|
||||
/** Types from sveltedoc-parser/typings */
|
||||
|
||||
export interface JSDocKeyword {
|
||||
name: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export type JSDocTypeKind = 'type' | 'const' | 'union' | 'function';
|
||||
|
||||
export interface JSDocTypeBase {
|
||||
kind: JSDocTypeKind;
|
||||
text: string;
|
||||
}
|
||||
|
||||
export interface JSDocTypeElement extends JSDocTypeBase {
|
||||
kind: 'type';
|
||||
type: string;
|
||||
importPath?: string;
|
||||
}
|
||||
|
||||
export interface JSDocTypeConst extends JSDocTypeBase {
|
||||
kind: 'const';
|
||||
type: string;
|
||||
value?: any;
|
||||
}
|
||||
|
||||
export interface JSDocTypeUnion extends JSDocTypeBase {
|
||||
kind: 'union';
|
||||
type: JSDocType[];
|
||||
}
|
||||
|
||||
export interface IMethodDefinition {
|
||||
params?: SvelteMethodParamItem[];
|
||||
return?: SvelteMethodReturnItem;
|
||||
}
|
||||
|
||||
/** @since {4.2.0} */
|
||||
export interface JSDocTypeFunction extends JSDocTypeBase, IMethodDefinition {
|
||||
kind: 'function';
|
||||
}
|
||||
|
||||
export type JSDocType = JSDocTypeElement | JSDocTypeConst | JSDocTypeUnion | JSDocTypeFunction;
|
||||
|
||||
export interface SourceLocation {
|
||||
start: number;
|
||||
end: number;
|
||||
}
|
||||
|
||||
export type JSVisibilityScope = 'public' | 'protected' | 'private';
|
||||
|
||||
export type JSVariableDeclarationKind = 'var' | 'let' | 'const';
|
||||
|
||||
export interface IScopedCommentItem {
|
||||
description?: string | null;
|
||||
visibility?: JSVisibilityScope;
|
||||
keywords?: JSDocKeyword[];
|
||||
}
|
||||
|
||||
export interface ISvelteItem extends IScopedCommentItem {
|
||||
name: string;
|
||||
locations?: SourceLocation[];
|
||||
}
|
||||
|
||||
export interface SvelteDataBindMapping {
|
||||
source: string;
|
||||
property: string;
|
||||
}
|
||||
|
||||
export interface SvelteDataItem extends ISvelteItem {
|
||||
type?: JSDocType;
|
||||
kind?: JSVariableDeclarationKind;
|
||||
bind?: SvelteDataBindMapping[];
|
||||
static?: boolean;
|
||||
readonly?: boolean;
|
||||
defaultValue?: any;
|
||||
originalName?: string;
|
||||
localName?: string;
|
||||
importPath?: string;
|
||||
}
|
||||
|
||||
export interface SvelteComputedItem extends ISvelteItem {
|
||||
dependencies: string[];
|
||||
}
|
||||
|
||||
export interface SvelteMethodParamItem {
|
||||
name: string;
|
||||
type: JSDocType;
|
||||
repeated?: boolean;
|
||||
optional?: boolean;
|
||||
defaultValue?: string;
|
||||
description?: string;
|
||||
static?: boolean;
|
||||
}
|
||||
|
||||
export interface SvelteMethodReturnItem {
|
||||
type: JSDocType;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export interface SvelteMethodItem extends ISvelteItem, IMethodDefinition {}
|
||||
|
||||
export interface SvelteComponentItem extends ISvelteItem {
|
||||
importPath?: string;
|
||||
}
|
||||
|
||||
export type SvelteEventModificator =
|
||||
| 'preventDefault'
|
||||
| 'stopPropagation'
|
||||
| 'passive'
|
||||
| 'capture'
|
||||
| 'once'
|
||||
| 'nonpassive'
|
||||
| 'self'
|
||||
| 'trusted';
|
||||
|
||||
export interface SvelteEventItem extends ISvelteItem {
|
||||
parent?: string | null;
|
||||
modificators?: SvelteEventModificator[];
|
||||
}
|
||||
|
||||
export interface SvelteSlotParameter {
|
||||
name: string;
|
||||
type: JSDocType;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export interface SvelteSlotItem extends ISvelteItem {
|
||||
parameters?: SvelteSlotParameter[];
|
||||
params?: SvelteSlotParameter[];
|
||||
}
|
||||
|
||||
export interface SvelteRefItem extends ISvelteItem {
|
||||
parent?: string | null;
|
||||
}
|
||||
|
||||
export interface SvelteComponentDoc {
|
||||
name?: string | null;
|
||||
version?: number;
|
||||
description?: string | null;
|
||||
data?: SvelteDataItem[];
|
||||
computed?: SvelteComputedItem[];
|
||||
components?: SvelteComponentItem[];
|
||||
events?: SvelteEventItem[];
|
||||
slots?: SvelteSlotItem[];
|
||||
refs?: SvelteRefItem[];
|
||||
|
||||
methods?: SvelteMethodItem[];
|
||||
actions?: SvelteMethodItem[];
|
||||
helpers?: SvelteMethodItem[];
|
||||
transitions?: SvelteMethodItem[];
|
||||
dispatchers?: SvelteMethodItem[];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user