@vue/typescript-plugin 2.0.5 → 2.0.6
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/index.js +0 -4
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -186,10 +186,6 @@ function createLanguageServicePlugin() {
|
|
|
186
186
|
|| !externalFiles.has(project)) {
|
|
187
187
|
const oldFiles = externalFiles.get(project);
|
|
188
188
|
const newFiles = new Set((0, decorateLanguageServiceHost_1.searchExternalFiles)(ts, project, projectExternalFileExtensions.get(project)));
|
|
189
|
-
console.log('volar-search vue files');
|
|
190
|
-
for (const file of newFiles) {
|
|
191
|
-
console.log(file);
|
|
192
|
-
}
|
|
193
189
|
externalFiles.set(project, newFiles);
|
|
194
190
|
if (oldFiles && !twoSetsEqual(oldFiles, newFiles)) {
|
|
195
191
|
for (const oldFile of oldFiles) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/typescript-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"**/*.js",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"directory": "packages/typescript-plugin"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@volar/typescript": "~2.1.
|
|
16
|
-
"@vue/language-core": "2.0.
|
|
15
|
+
"@volar/typescript": "~2.1.2",
|
|
16
|
+
"@vue/language-core": "2.0.6",
|
|
17
17
|
"@vue/shared": "^3.4.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "latest"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "feb990ccec85f6330bba37c8b1d1287f0980274c"
|
|
23
23
|
}
|