]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix: remove console.log (#154)
authorCédric Exbrayat <cexbrayat@users.noreply.github.com>
Mon, 5 Sep 2022 07:24:13 +0000 (09:24 +0200)
committerGitHub <noreply@github.com>
Mon, 5 Sep 2022 07:24:13 +0000 (15:24 +0800)
utils/renderEslint.ts

index 1f0daa6c07425d72aaa2bb786276568e957a6260..a47743538ef186808ba0ee323fe21d23d1eb4625 100644 (file)
@@ -58,7 +58,6 @@ export default function renderEslint(
   // write to .eslintrc.cjs, .prettierrc.json, etc.
   for (const [fileName, content] of Object.entries(files)) {
     const fullPath = path.resolve(rootDir, fileName)
-    console.log(fullPath, content)
     fs.writeFileSync(fullPath, content as string, 'utf-8')
   }
 }