Skip to content

Commit

Permalink
update lume cli version, update typescript version, improve the test:…
Browse files Browse the repository at this point in the history
…all script so that tests across all workspaces run under a single '@web/test-runner' instance and so that they finish faster by avoiding launching multiple browser instances at once (also avoid running test-runner at the same time as non-test-runner tests because somehow it makes test-runner fail to import some modules)
  • Loading branch information
trusktr committed Nov 7, 2023
1 parent 2d7df2b commit 11f5894
Show file tree
Hide file tree
Showing 353 changed files with 2,548 additions and 2,607 deletions.
2 changes: 1 addition & 1 deletion apps/docs
2 changes: 1 addition & 1 deletion apps/website
Submodule website updated 2 files
+11 −2 package.json
+1 −0 tsconfig.json
2 changes: 1 addition & 1 deletion dist/LumeConfig.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare type LumeConfig = {
type LumeConfig = {
autoDefineElements?: boolean;
};
declare global {
Expand Down
2 changes: 1 addition & 1 deletion dist/LumeConfig.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions dist/behaviors/Behavior.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
import 'element-behaviors';
import type { Constructor } from 'lowclass';
import type { ElementWithBehaviors } from 'element-behaviors';
declare type ElementTypeArrayToInstArray<T extends Constructor[]> = {
[K in keyof T]: InstanceType<T[number & K]>;
};
declare type ArrayValues<T extends any[]> = T[number & keyof T];
declare type ElementTypes<T extends Constructor[]> = ArrayValues<ElementTypeArrayToInstArray<T>>;
declare const Behavior_base: {
new (...args: any[]): {
connectedCallback(): void;
Expand All @@ -24,13 +18,13 @@ declare const Behavior_base: {
export declare abstract class Behavior extends Behavior_base {
#private;
static awaitElementDefined: boolean;
element: ElementTypes<ReturnType<this['requiredElementType']>>;
element: Element;
constructor(element: ElementWithBehaviors);
requiredElementType(): {
new (): Element;
prototype: Element;
}[];
get observedObject(): ElementTypes<ReturnType<this["requiredElementType"]>>;
get observedObject(): Element;
__forwardInitialProps(): void;
}
export {};
Expand Down
2 changes: 1 addition & 1 deletion dist/behaviors/Behavior.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/behaviors/Behavior.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 11f5894

Please sign in to comment.