Skip to content

Commit

Permalink
Don't run type check before building
Browse files Browse the repository at this point in the history
  • Loading branch information
simonlc committed Dec 6, 2023
1 parent e41e0b2 commit 94aa3cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
Expand Down
8 changes: 1 addition & 7 deletions src/Globe.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
import {
geoPath,
geoCentroid,
geoOrthographic,
geoGraticule10,
select,
drag,
zoom,
geoContains,
} from 'd3';
import { land } from './App';
import { useEffect, useMemo, useRef } from 'react';
import {
throttledRotateProjectionBy,
throttledZoomProjectionBy,
rotateProjectionTo,
} from './transformations';
import { rotateProjectionTo } from './transformations';

export function Globe({ size, country, initialRotation, rotation }) {
const svgRef = useRef<SVGSVGElement>(null);
Expand Down

0 comments on commit 94aa3cc

Please sign in to comment.