We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106dc49 commit 2c94013Copy full SHA for 2c94013
scripts/publish.ts
@@ -2,9 +2,11 @@
2
import process from 'node:process'
3
import { dirname, join, resolve } from 'path'
4
import { fileURLToPath } from 'url'
5
-import { execa } from 'execa'
6
import fs from 'fs-extra'
7
+// No "exports" main defined in execa/node_modules/unicorn-magic/package.json
8
+const { execa } = await import('execa')
9
+
10
const dir =
11
typeof __dirname === 'string'
12
? __dirname
src/webview/components/settings/setting-item.tsx
@@ -95,7 +95,9 @@ export const SettingItem = ({
95
'input',
96
'textarea',
97
'switch',
98
- 'numberInput'
+ 'numberInput',
99
+ 'languageSelector',
100
+ 'themeSelector'
101
].includes(config.renderOptions.type)
102
103
return (
0 commit comments