Skip to content

Commit 32cc105

Browse files
committed
#237 Remove tsc in build step
1 parent 4b10e2a commit 32cc105

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
# This is needed when playwright is used in tests #70
4444
- run: pnpm lint-fix
4545
- run: pnpm build
46+
- run: pnpm typecheck
4647
# Mayb we can do without these?
4748
# - run: npx playwright install-deps
4849
# - run: npx playwright install

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"editor.rulers": [
33
80
44
],
5-
"files.exclude": {
5+
"search.exclude": {
66
"**/.git": true,
77
"**/node_modules": true,
88
"**/build": true,

data-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"url": "https://github.com/atomicdata-dev/atomic-data-browser/"
5858
},
5959
"scripts": {
60-
"build": "tsc && vite build",
60+
"build": "vite build",
6161
"deploy": "gh-pages -d build",
6262
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
6363
"lint-fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",

data-browser/src/components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import ResourceContextMenu from './ResourceContextMenu';
2121
import { isRunningInTauri } from '../helpers/tauri';
2222
import { shortcuts } from './HotKeyWrapper';
2323
import { MenuBarDropdownTrigger } from './ResourceContextMenu/MenuBarDropdownTrigger';
24-
import { NavBarSpacer } from './NavbarSpacer';
24+
import { NavBarSpacer } from './NavBarSpacer';
2525

2626
interface NavWrapperProps {
2727
children: React.ReactNode;

data-browser/src/components/SideBar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { SideBarHeader } from './SideBarHeader';
1010
import { DragAreaBase, useResizable } from '../../hooks/useResizable';
1111
import { useCombineRefs } from '../../hooks/useCombineRefs';
1212
import { About } from './About';
13-
import { NavBarSpacer } from '../NavbarSpacer';
13+
import { NavBarSpacer } from '../NavBarSpacer';
1414

1515
/** Amount of pixels where the sidebar automatically shows */
1616
export const SIDEBAR_TOGGLE_WIDTH = 600;

0 commit comments

Comments
 (0)