vue-tsc 0.31.0 → 0.31.4
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.
- package/bin/vue-tsc.js +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
|
|
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
|
|
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.31.
|
|
3
|
+
"version": "0.31.4",
|
|
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.31.
|
|
19
|
-
"vscode-vue-languageservice": "0.31.
|
|
18
|
+
"@volar/shared": "0.31.4",
|
|
19
|
+
"vscode-vue-languageservice": "0.31.4"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"typescript": "*"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "d22236527bf25280672ea21552599ea0a3fb44b0"
|
|
25
25
|
}
|