Skip to content

Commit da0b6de

Browse files
authoredMay 19, 2022
fix: rewrite CJS specific funcs/vars in plugins (#8227)
1 parent e57af2e commit da0b6de

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed
 

‎.eslintrc.cjs

+6
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ module.exports = defineConfig({
115115
'node/no-extraneous-import': 'off'
116116
}
117117
},
118+
{
119+
files: ['packages/plugin-*/**/*'],
120+
rules: {
121+
'no-restricted-globals': ['error', 'require', '__dirname', '__filename']
122+
}
123+
},
118124
{
119125
files: ['playground/**'],
120126
rules: {

‎packages/plugin-vue-jsx/src/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function vueJsxPlugin(options: Options = {}): Plugin {
7373
}
7474
},
7575

76-
transform(code, id, opt) {
76+
async transform(code, id, opt) {
7777
const ssr = typeof opt === 'boolean' ? opt : (opt && opt.ssr) === true
7878
const {
7979
include,
@@ -91,7 +91,10 @@ function vueJsxPlugin(options: Options = {}): Plugin {
9191
const plugins = [importMeta, [jsx, babelPluginOptions], ...babelPlugins]
9292
if (id.endsWith('.tsx') || filepath.endsWith('.tsx')) {
9393
plugins.push([
94-
require('@babel/plugin-transform-typescript'),
94+
// @ts-ignore missing type
95+
await import('@babel/plugin-transform-typescript').then(
96+
(r) => r.default
97+
),
9598
// @ts-ignore
9699
{ isTSX: true, allowExtensions: true }
97100
])

‎packages/plugin-vue-jsx/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"compilerOptions": {
55
"outDir": "dist",
66
"target": "ES2020",
7-
"module": "CommonJS",
7+
"module": "ES2020",
88
"moduleResolution": "Node",
99
"strict": true,
1010
"declaration": true,

‎packages/plugin-vue/src/compiler.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ declare module 'vue/compiler-sfc' {
55
}
66
}
77

8+
import { createRequire } from 'module'
89
import type * as _compiler from 'vue/compiler-sfc'
910

1011
export function resolveCompiler(root: string): typeof _compiler {
@@ -23,8 +24,11 @@ export function resolveCompiler(root: string): typeof _compiler {
2324
return compiler
2425
}
2526

27+
const _require = createRequire(import.meta.url)
2628
function tryRequire(id: string, from?: string) {
2729
try {
28-
return from ? require(require.resolve(id, { paths: [from] })) : require(id)
30+
return from
31+
? _require(_require.resolve(id, { paths: [from] }))
32+
: _require(id)
2933
} catch (e) {}
3034
}

‎packages/plugin-vue/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"compilerOptions": {
55
"outDir": "dist",
66
"target": "ES2020",
7-
"module": "commonjs",
7+
"module": "ES2020",
88
"moduleResolution": "node",
99
"strict": true,
1010
"declaration": true,

0 commit comments

Comments
 (0)
Please sign in to comment.