Fix: Insert missing hyphen

This commit is contained in:
syuilo 2017-02-01 04:31:43 +09:00
parent 9228e8eab9
commit 8a35d7fd30
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ interface Mixin {
export type IConfig = ISource & Mixin;
export default function load() {
const config = yaml.safeLoad(fs.readFileSync(path, 'utf8')) as ISource;
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as ISource;
const mixin: Mixin = {} as Mixin;