Skip to content

Commit f35706c

Browse files
authored
Merge branch 'main' into vv/app-package-version-bump
2 parents d1f4654 + 195414e commit f35706c

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ jobs:
5454
pnpm --filter "@wdio/nightwatch-devtools" build
5555
- name: Release
5656
run: pnpm -r publish --access public --no-git-checks
57+
env:
5758
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

packages/app/vite.config.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@ const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
88

99
export default defineConfig({
1010
resolve: {
11+
// Force all codemirror packages to use the same @codemirror/state instance,
12+
// preventing the "multiple instances" error when mixing codemirror meta-package
13+
// with direct @codemirror/* imports under pnpm.
14+
dedupe: ['@codemirror/state'],
1115
alias: {
12-
// Force all codemirror packages to use the same @codemirror/state instance,
13-
// preventing the "multiple instances" error when mixing codemirror meta-package
14-
// with direct @codemirror/* imports under pnpm.
15-
'@codemirror/state': path.resolve(
16-
__dirname,
17-
'../../node_modules/.pnpm/@[email protected]/node_modules/@codemirror/state'
18-
),
1916
'@': path.resolve(__dirname, './src'),
2017
'@core': path.resolve(__dirname, './src/core'),
2118
'@components': path.resolve(__dirname, './src/components'),

packages/nightwatch-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/nightwatch-devtools",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Nightwatch adapter for WebdriverIO DevTools - reuses existing backend, UI, and capture infrastructure",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)