We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec5871 commit 05ac8baCopy full SHA for 05ac8ba
scripts/build.mjs
@@ -54,7 +54,6 @@ await esbuild.build({
54
{
55
name: '@vue/create-eslint-config fix',
56
setup(build) {
57
-
58
// The renderEjsFile.js module uses file system APIs therefore after bundling it will not work.
59
// So we need to preprocess it to remove the file system APIs.
60
build.onLoad({ filter: /@vue.create-eslint-config.renderEjsFile\.js$/ }, (args) => {
utils/renderEslint.ts
@@ -108,7 +108,7 @@ export function getAdditionalConfigs({
108
]
109
.map(JSON.stringify.bind(JSON))
110
.join(',\n ')
111
- .replace(/"/g, "'")} // use single quotes as in the other configs
+ .replace(/"/g, "'" /* use single quotes as in the other configs */)}
112
],
113
},`
114
}
0 commit comments