fix(cli): failed to compile ts in sfc (#8109)

This commit is contained in:
neverland 2021-02-09 17:30:01 +08:00 committed by GitHub
parent d8acec1671
commit 2e5535ba7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 3 deletions

View File

@ -0,0 +1,26 @@
/**
* @babel/preset-typescript Vue ts
* @babel/plugin-transform-typescript
* see: https://github.com/babel/babel-loader/pull/738
*/
import { readFileSync } from 'fs';
import { declare } from '@babel/helper-plugin-utils';
module.exports = declare(() => ({
overrides: [
{
test: (filePath: string) => {
if (/\.vue$/.test(filePath)) {
const template = readFileSync(filePath, { encoding: 'utf8' });
return (
template.includes('lang="ts"') || template.includes("lang='ts'")
);
}
return false;
},
plugins: [require('@babel/plugin-transform-typescript')],
},
],
}));

View File

@ -83,7 +83,6 @@ export function parseSfc(filePath: string) {
export async function compileSfc(filePath: string): Promise<any> {
const tasks = [remove(filePath)];
const source = readFileSync(filePath, 'utf-8');
const jsFilePath = replaceExt(filePath, '.js');
const descriptor = parseSfc(filePath);
const { template, styles } = descriptor;
@ -92,6 +91,9 @@ export async function compileSfc(filePath: string): Promise<any> {
// compile js part
if (descriptor.script) {
const lang = descriptor.script.lang || 'js';
const scriptFilePath = replaceExt(filePath, `.${lang}`);
tasks.push(
new Promise((resolve, reject) => {
let script = descriptor.script!.content;
@ -106,8 +108,8 @@ export async function compileSfc(filePath: string): Promise<any> {
script = injectScopeId(script, scopeId);
}
writeFileSync(jsFilePath, script);
compileJs(jsFilePath).then(resolve).catch(reject);
writeFileSync(scriptFilePath, script);
compileJs(scriptFilePath).then(resolve).catch(reject);
})
);
}

View File

@ -25,6 +25,7 @@ module.exports = function(api?: ConfigAPI) {
},
],
'@babel/preset-typescript',
require('../compiler/babel-preset-vue-ts'),
],
plugins: [
[

View File

@ -9,4 +9,5 @@ declare module 'release-it';
declare module 'html-webpack-plugin';
declare module 'conventional-changelog';
declare module '@vant/markdown-vetur';
declare module '@babel/helper-plugin-utils';
declare module '@nuxt/friendly-errors-webpack-plugin';