Skip to content

Commit

Permalink
Fix grammar (#930)
Browse files Browse the repository at this point in the history
  • Loading branch information
joezimjs authored Feb 4, 2022
1 parent d15999d commit 58e6b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue-tsc/bin/vue-tsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ fs.readFileSync = (...args) => {
let tsc = readFileSync(...args);
tsc = tsc.replace(
`function createIncrementalProgram(_a) {`,
`function createIncrementalProgram(_a) { console.error('incremental mode is not yet support'); throw 'incremental mode is not yet support';`,
`function createIncrementalProgram(_a) { console.error('incremental mode is not yet supported'); throw 'incremental mode is not yet supported';`,
);
tsc = tsc.replace(
`function createWatchProgram(host) {`,
`function createWatchProgram(host) { console.error('watch mode is not yet support'); throw 'watch mode is not yet support';`,
`function createWatchProgram(host) { console.error('watch mode is not yet supported'); throw 'watch mode is not yet supported';`,
);
tsc = tsc.replace(
`function createProgram(rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) {`,
Expand Down

0 comments on commit 58e6b84

Please sign in to comment.