Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0854e64

Browse files
committed
disable astro check
1 parent 0e68d99 commit 0854e64

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

apps/astro-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"dev": "astro dev",
77
"start": "astro dev",
8-
"build": "astro check && astro build",
8+
"build": "astro build",
99
"preview": "astro preview",
1010
"astro": "astro"
1111
},

apps/astro-docs/src/components/soba/abstractions/grid.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ import { NgtsGrid } from 'angular-three-soba/abstractions';
44
import { NgtsOrbitControls } from 'angular-three-soba/controls';
55
import { injectGLTF } from 'angular-three-soba/loaders';
66
import { NgtsAccumulativeShadows, NgtsCenter, NgtsEnvironment, NgtsRandomizedLights } from 'angular-three-soba/staging';
7-
import { Mesh } from 'three';
8-
import type { GLTF } from 'three-stdlib';
9-
10-
type SuzanneGLTF = GLTF & {
11-
nodes: { Suzanne: Mesh };
12-
materials: {};
13-
};
147

158
@Component({
169
selector: 'grid-suzi',
@@ -34,7 +27,7 @@ type SuzanneGLTF = GLTF & {
3427
export class Suzi {
3528
gltf = injectGLTF(
3629
() => 'https://vazxmixjsiawhamofees.supabase.co/storage/v1/object/public/models/suzanne-high-poly/model.gltf',
37-
) as Signal<SuzanneGLTF | null>;
30+
) as Signal<any | null>;
3831

3932
rotation = input([0, 0, 0]);
4033
scale = input(1);

apps/astro-docs/src/components/soba/scene-graph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {
22
afterNextRender,
33
ChangeDetectionStrategy,
44
Component,
5+
ComponentRef,
56
CUSTOM_ELEMENTS_SCHEMA,
67
DestroyRef,
78
inject,
@@ -11,7 +12,6 @@ import {
1112
} from '@angular/core';
1213
import { NgtArgs } from 'angular-three';
1314
import { NgtsOrbitControls } from 'angular-three-soba/controls';
14-
import type { ComponentRef } from 'react';
1515
import { CANVAS_OPTIONS } from './canvas-options';
1616
import { SOBA_CONTENT } from './soba-content';
1717

apps/astro-docs/src/components/soba/wrapper.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import { Tabs, TabItem, Code } from '@astrojs/starlight/components';
3-
import { SceneKeys, SceneOptions, scenes } from './scenes';
3+
import { type SceneKeys, type SceneOptions, scenes } from './scenes';
44
import { SobaWrapper } from './wrapper';
55
66
interface Props {

0 commit comments

Comments
 (0)