Skip to content

Commit

Permalink
chore: utf8 replaced with utf-8 (#16232)
Browse files Browse the repository at this point in the history
  • Loading branch information
btea committed Mar 22, 2024
1 parent dad7f4f commit 9800c73
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/vite/rollupLicensePlugin.ts
Expand Up @@ -88,7 +88,7 @@ export default function licensePlugin(
`${sortLicenses(licenses).join(', ')}\n\n` +
`# Bundled dependencies:\n` +
dependencyLicenseTexts
const existingLicenseText = fs.readFileSync(licenseFilePath, 'utf8')
const existingLicenseText = fs.readFileSync(licenseFilePath, 'utf-8')
if (existingLicenseText !== licenseText) {
fs.writeFileSync(licenseFilePath, licenseText)
console.warn(
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/node/config.ts
Expand Up @@ -1174,7 +1174,7 @@ async function bundleConfigFile(
name: 'inject-file-scope-variables',
setup(build) {
build.onLoad({ filter: /\.[cm]?[jt]s$/ }, async (args) => {
const contents = await fsp.readFile(args.path, 'utf8')
const contents = await fsp.readFile(args.path, 'utf-8')
const injectValues =
`const ${dirnameVarName} = ${JSON.stringify(
path.dirname(args.path),
Expand Down
2 changes: 1 addition & 1 deletion playground/csp/vite.config.js
Expand Up @@ -28,7 +28,7 @@ const setNonceHeader = (res, nonce) => {
const createMiddleware = (file, transform) => async (req, res) => {
const nonce = createNonce()
setNonceHeader(res, nonce)
const content = await fs.readFile(path.join(__dirname, file), 'utf8')
const content = await fs.readFile(path.join(__dirname, file), 'utf-8')
const transformedContent = await transform(content, req.originalUrl)
res.setHeader('Content-Type', 'text/html')
res.end(transformedContent.replaceAll(noncePlaceholder, nonce))
Expand Down
2 changes: 1 addition & 1 deletion playground/json/server.js
Expand Up @@ -69,7 +69,7 @@ export async function createServer(root = process.cwd(), hmrPort) {
}

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

res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
Expand Down
2 changes: 1 addition & 1 deletion playground/resolve-config/__tests__/resolve-config.spec.ts
Expand Up @@ -13,7 +13,7 @@ const build = (configName: string) => {
const getDistFile = (configName: string, extension: string) => {
return fs.readFileSync(
fromTestDir(`${configName}/dist/index.${extension}`),
'utf8',
'utf-8',
)
}

Expand Down
4 changes: 2 additions & 2 deletions playground/resolve-config/__tests__/serve.ts
Expand Up @@ -21,7 +21,7 @@ export async function serve() {
await fs.rename(fromTestDir(configName, 'vite.config.ts'), pathToConf)

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

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

Expand Down

0 comments on commit 9800c73

Please sign in to comment.