Skip to content

Commit 9cc3640

Browse files
committed
Fix e2e tests
1 parent 9840cdd commit 9cc3640

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

.github/workflows/code-qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ jobs:
134134
working-directory: apps/vscode-e2e
135135
run: xvfb-run -a pnpm test:ci
136136

137-
unit-test:
138-
needs: [platform-unit-test] # [platform-unit-test, integration-test]
137+
qa:
138+
needs: [check-translations, knip, compile, platform-unit-test, integration-test]
139139
runs-on: ubuntu-latest
140140
steps:
141141
- name: NO-OP

MONOREPO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ pnpm clean && pnpm bundle
3838
pnpm clean && pnpm build
3939
pnpm clean && pnpm npx turbo watch:bundle
4040
pnpm clean && pnpm npx turbo watch:tsc
41+
cd apps/vscode-e2e && pnpm test:ci
4142
```

packages/types/npm/package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roo-code/types",
3-
"version": "1.18.0",
3+
"version": "1.19.0",
44
"description": "TypeScript type definitions for Roo Code.",
55
"publishConfig": {
66
"access": "public",
@@ -21,14 +21,17 @@
2121
"roo-code",
2222
"ai"
2323
],
24-
"main": "./dist/index.js",
25-
"module": "./dist/index.mjs",
24+
"main": "./dist/index.cjs",
25+
"module": "./dist/index.js",
2626
"types": "./dist/index.d.ts",
2727
"exports": {
2828
".": {
2929
"types": "./dist/index.d.ts",
30-
"import": "./dist/index.mjs",
31-
"require": "./dist/index.js"
30+
"import": "./dist/index.js",
31+
"require": {
32+
"types": "./dist/index.d.cts",
33+
"default": "./dist/index.cjs"
34+
}
3235
}
3336
},
3437
"files": [

packages/types/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "@roo-code/types",
33
"version": "0.0.0",
44
"type": "module",
5-
"main": "./dist/index.js",
5+
"main": "./dist/index.cjs",
66
"exports": {
77
".": {
88
"types": "./src/index.ts",
99
"import": "./src/index.ts",
1010
"require": {
1111
"types": "./dist/index.d.cts",
12-
"default": "./dist/index.js"
12+
"default": "./dist/index.cjs"
1313
}
1414
}
1515
},

packages/types/tsup.config.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,4 @@ export default defineConfig({
88
splitting: false,
99
sourcemap: true,
1010
outDir: "dist",
11-
outExtension({ format }) {
12-
return {
13-
js: format === "cjs" ? ".js" : ".mjs",
14-
}
15-
},
1611
})

0 commit comments

Comments
 (0)