vue-tsc 0.30.5 → 0.31.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/vue-tsc.js +2 -2
  2. package/package.json +4 -4
package/bin/vue-tsc.js CHANGED
@@ -10,11 +10,11 @@ fs.readFileSync = (...args) => {
10
10
  let tsc = readFileSync(...args);
11
11
  tsc = tsc.replace(
12
12
  `function createIncrementalProgram(_a) {`,
13
- `function createIncrementalProgram(_a) { console.error('incremental mode is not yet support'); throw 'incremental mode is not yet support';`,
13
+ `function createIncrementalProgram(_a) { console.error('incremental mode is not yet supported'); throw 'incremental mode is not yet supported';`,
14
14
  );
15
15
  tsc = tsc.replace(
16
16
  `function createWatchProgram(host) {`,
17
- `function createWatchProgram(host) { console.error('watch mode is not yet support'); throw 'watch mode is not yet support';`,
17
+ `function createWatchProgram(host) { console.error('watch mode is not yet supported'); throw 'watch mode is not yet supported';`,
18
18
  );
19
19
  tsc = tsc.replace(
20
20
  `function createProgram(rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) {`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-tsc",
3
- "version": "0.30.5",
3
+ "version": "0.31.2",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "bin",
@@ -15,11 +15,11 @@
15
15
  "vue-tsc": "./bin/vue-tsc.js"
16
16
  },
17
17
  "dependencies": {
18
- "@volar/shared": "0.30.5",
19
- "vscode-vue-languageservice": "0.30.5"
18
+ "@volar/shared": "0.31.2",
19
+ "vscode-vue-languageservice": "0.31.2"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "typescript": "*"
23
23
  },
24
- "gitHead": "98e8cf052f2794e0b3a6b650b0a53ae6c03a8b33"
24
+ "gitHead": "8e6be22226a9c8592561a9eeeb9d26709d512f7f"
25
25
  }