Skip to content

Commit 9800c73

Browse files
authoredMar 22, 2024··
chore: utf8 replaced with utf-8 (#16232)
1 parent dad7f4f commit 9800c73

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎packages/vite/rollupLicensePlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default function licensePlugin(
8888
`${sortLicenses(licenses).join(', ')}\n\n` +
8989
`# Bundled dependencies:\n` +
9090
dependencyLicenseTexts
91-
const existingLicenseText = fs.readFileSync(licenseFilePath, 'utf8')
91+
const existingLicenseText = fs.readFileSync(licenseFilePath, 'utf-8')
9292
if (existingLicenseText !== licenseText) {
9393
fs.writeFileSync(licenseFilePath, licenseText)
9494
console.warn(

‎packages/vite/src/node/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ async function bundleConfigFile(
11741174
name: 'inject-file-scope-variables',
11751175
setup(build) {
11761176
build.onLoad({ filter: /\.[cm]?[jt]s$/ }, async (args) => {
1177-
const contents = await fsp.readFile(args.path, 'utf8')
1177+
const contents = await fsp.readFile(args.path, 'utf-8')
11781178
const injectValues =
11791179
`const ${dirnameVarName} = ${JSON.stringify(
11801180
path.dirname(args.path),

‎playground/csp/vite.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const setNonceHeader = (res, nonce) => {
2828
const createMiddleware = (file, transform) => async (req, res) => {
2929
const nonce = createNonce()
3030
setNonceHeader(res, nonce)
31-
const content = await fs.readFile(path.join(__dirname, file), 'utf8')
31+
const content = await fs.readFile(path.join(__dirname, file), 'utf-8')
3232
const transformedContent = await transform(content, req.originalUrl)
3333
res.setHeader('Content-Type', 'text/html')
3434
res.end(transformedContent.replaceAll(noncePlaceholder, nonce))

‎playground/json/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export async function createServer(root = process.cwd(), hmrPort) {
6969
}
7070

7171
const htmlLoc = resolve(`.${url}`)
72-
let html = fs.readFileSync(htmlLoc, 'utf8')
72+
let html = fs.readFileSync(htmlLoc, 'utf-8')
7373
html = await vite.transformIndexHtml(url, html)
7474

7575
res.status(200).set({ 'Content-Type': 'text/html' }).end(html)

‎playground/resolve-config/__tests__/resolve-config.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const build = (configName: string) => {
1313
const getDistFile = (configName: string, extension: string) => {
1414
return fs.readFileSync(
1515
fromTestDir(`${configName}/dist/index.${extension}`),
16-
'utf8',
16+
'utf-8',
1717
)
1818
}
1919

‎playground/resolve-config/__tests__/serve.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function serve() {
2121
await fs.rename(fromTestDir(configName, 'vite.config.ts'), pathToConf)
2222

2323
if (['cjs', 'cts'].includes(configName)) {
24-
const conf = await fs.readFile(pathToConf, 'utf8')
24+
const conf = await fs.readFile(pathToConf, 'utf-8')
2525
await fs.writeFile(
2626
pathToConf,
2727
conf.replace('export default', 'module.exports = '),
@@ -30,7 +30,7 @@ export async function serve() {
3030

3131
// Remove TS annotation for plain JavaScript file.
3232
if (configName.endsWith('js')) {
33-
const conf = await fs.readFile(pathToConf, 'utf8')
33+
const conf = await fs.readFile(pathToConf, 'utf-8')
3434
await fs.writeFile(pathToConf, conf.replace(': boolean', ''))
3535
}
3636

0 commit comments

Comments
 (0)
Please sign in to comment.