Skip to content

Commit 4d36e80

Browse files
committed
fix build scripts
1 parent 6d2d028 commit 4d36e80

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

apps/events/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",
8-
"build": "tsc -b && vite build",
8+
"build": "echo 'TODO'",
99
"lint": "pnpm biome lint src/*",
1010
"lint:fix": "pnpm biome lint --write src/*",
1111
"format": "pnpm biome format src/*",

apps/server/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import cors from 'cors';
22
import 'dotenv/config';
3+
import { parse } from 'node:url';
34
import { Effect, Exit, Schema } from 'effect';
45
import express from 'express';
56
import type {
@@ -14,7 +15,6 @@ import type {
1415
import { RequestMessage, deserialize, serialize } from 'graph-framework-messages';
1516
import type { SpaceEvent } from 'graph-framework-space-events';
1617
import { applyEvent } from 'graph-framework-space-events';
17-
import { parse } from 'node:url';
1818
import WebSocket, { WebSocketServer } from 'ws';
1919
import { applySpaceEvent } from './handlers/applySpaceEvent.js';
2020
import { createSpace } from './handlers/createSpace.js';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"vite-plugin-dts": "^4.3.0"
1313
},
1414
"scripts": {
15-
"build": "pnpm --filter graph-framework-utils build",
15+
"build": "pnpm -r build",
1616
"ts:check": "pnpm -r ts:check",
1717
"test": "vitest",
1818
"lint": "pnpm -r lint",

packages/graph-framework-key/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"scripts": {
12-
"build": "vite build",
12+
"build": "tsc",
1313
"test": "vitest run --typecheck",
1414
"ts:check": "tsc --noEmit",
1515
"lint": "pnpm biome lint src/*",

packages/graph-framework-messages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"scripts": {
12-
"build": "vite build",
12+
"build": "tsc",
1313
"test": "vitest run --typecheck",
1414
"ts:check": "tsc --noEmit",
1515
"lint": "pnpm biome lint src/*",

packages/graph-framework-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"files": ["dist", "package.json"],
2424
"sideEffects": false,
2525
"scripts": {
26-
"build": "vite build",
26+
"build": "tsc",
2727
"test": "vitest run --typecheck",
2828
"ts:check": "tsc --noEmit",
2929
"lint": "pnpm biome lint src/*",

0 commit comments

Comments
 (0)