Skip to content

Commit 2b41593

Browse files
committed
fix: change script order
1 parent d36520f commit 2b41593

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

typescript/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ echo "export const TempoVersion = '$VERSION';" > $COMMON_VERSION_FILE
8888

8989
echo "All package versions and '@tempojs' dependencies have been updated to $VERSION."
9090

91-
# Test
92-
yarn vitest run
91+
# Install
92+
yarn install
9393

9494
# Build and pack the 'common' package.
9595
build ./packages/common
@@ -109,5 +109,5 @@ build ./packages/cf-router
109109
# Build and pack the 'node-http-router' package.
110110
build ./packages/node-http
111111

112-
# Install package dependencies
113-
yarn install
112+
# Test
113+
yarn vitest run

typescript/packages/server/src/context.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { ServerContext, IncomingContext, OutgoingContext } from './context';
22
import { AuthContext } from './auth';
3-
import { Metadata, Deadline } from '@tempojs/common';
3+
import { Metadata, Deadline, TempoError } from '@tempojs/common';
44
import { beforeEach, describe, expect, it } from 'vitest';
5-
import { TempoError } from '@tempojs/common';
65

76
describe('ServerContext', () => {
87
let incomingContext: IncomingContext;

0 commit comments

Comments
 (0)