Skip to content

Commit 21c3099

Browse files
committed
update assets
1 parent 210d1d3 commit 21c3099

8 files changed

Lines changed: 19 additions & 18 deletions

File tree

lib/components/component-definition.js

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/component-definition.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/extractor.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export interface ExpandedProp {
1717
export declare function extractDefaultValues(exportSymbol: ts.Symbol, checker: ts.TypeChecker): Record<string, string>;
1818
export declare function extractProps(propsSymbol: ts.Symbol, checker: ts.TypeChecker): ExpandedProp[];
1919
export declare function extractFunctions(propsSymbol: ts.Symbol, checker: ts.TypeChecker): ExpandedProp[];
20-
export declare function extractExports(componentName: string, exportSymbols: ts.Symbol[], checker: ts.TypeChecker, extraExports: Record<string, Array<string>>): {
20+
export declare function extractExports(componentName: string, exportSymbols: ts.Symbol[], checker: ts.TypeChecker, extraExports: Record<string, Array<string>> | false): {
2121
componentSymbol: ts.Symbol;
2222
propsSymbol: ts.Symbol;
2323
};

lib/components/extractor.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/extractor.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { ComponentDefinition } from './interfaces';
22
export interface DocumenterOptions {
33
tsconfigPath: string;
44
publicFilesGlob: string;
5-
extraExports?: Record<string, Array<string>>;
5+
extraExports?: Record<string, Array<string>> | false;
66
}
77
export interface WriteOptions {
88
outDir: string;

lib/components/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
".": "./lib/index.js"
1212
},
1313
"scripts": {
14-
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore --ext js,ts,tsx .",
14+
"lint": "eslint --ignore-path .gitignore --ext js,ts,tsx .",
1515
"prebuild": "rimraf lib",
1616
"build": "tsc -p tsconfig.json && tsc -p tsconfig.test.json",
1717
"postbuild": "cp package.json README.md NOTICE LICENSE lib",

0 commit comments

Comments
 (0)