@volar/typescript 2.1.2 → 2.1.3
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.
|
@@ -12,11 +12,10 @@ function decorateProgram(files, program) {
|
|
|
12
12
|
// for tsc --noEmit --watch
|
|
13
13
|
// @ts-ignore
|
|
14
14
|
const getBindAndCheckDiagnostics = program.getBindAndCheckDiagnostics;
|
|
15
|
-
program.emit = (
|
|
16
|
-
const result = emit(
|
|
15
|
+
program.emit = (...args) => {
|
|
16
|
+
const result = emit(...args);
|
|
17
17
|
return {
|
|
18
|
-
|
|
19
|
-
emittedFiles: result.emittedFiles,
|
|
18
|
+
...result,
|
|
20
19
|
diagnostics: result.diagnostics
|
|
21
20
|
.map(d => (0, transform_1.transformDiagnostic)(files, d))
|
|
22
21
|
.filter(utils_1.notEmpty),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volar/typescript",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"**/*.js",
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"directory": "packages/typescript"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@volar/language-core": "2.1.
|
|
15
|
+
"@volar/language-core": "2.1.3",
|
|
16
16
|
"path-browserify": "^1.0.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "latest",
|
|
20
20
|
"@types/path-browserify": "latest",
|
|
21
|
-
"@volar/language-service": "2.1.
|
|
21
|
+
"@volar/language-service": "2.1.3"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "0f861d59faa19cbeadef182ee079be88f9629fc7"
|
|
24
24
|
}
|