vue-component-meta 1.0.8 → 1.0.10
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/README.md +0 -8
- package/out/index.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -172,14 +172,6 @@ You need to add `as const` to variable definition:
|
|
|
172
172
|
|
|
173
173
|
## Sponsors ❤️
|
|
174
174
|
|
|
175
|
-
<p align="center">
|
|
176
|
-
<a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company/sponsors.svg">
|
|
177
|
-
<img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company/sponsors.svg"/>
|
|
178
|
-
</a>
|
|
179
|
-
</p>
|
|
180
|
-
|
|
181
|
-
---
|
|
182
|
-
|
|
183
175
|
<p align="center">
|
|
184
176
|
<a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg">
|
|
185
177
|
<img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg"/>
|
package/out/index.js
CHANGED
|
@@ -94,7 +94,7 @@ function baseCreate(_host, checkerOptions, globalComponentName, ts) {
|
|
|
94
94
|
return _host[prop];
|
|
95
95
|
},
|
|
96
96
|
});
|
|
97
|
-
const vueLanguageModule = vue.createLanguageModule(host.getTypeScriptModule(), host.getCurrentDirectory(), host.getCompilationSettings(), host.getVueCompilationSettings()
|
|
97
|
+
const vueLanguageModule = vue.createLanguageModule(host.getTypeScriptModule(), host.getCurrentDirectory(), host.getCompilationSettings(), host.getVueCompilationSettings());
|
|
98
98
|
const core = embedded.createEmbeddedLanguageServiceHost(host, [vueLanguageModule]);
|
|
99
99
|
const proxyApis = checkerOptions.forceUseTs ? {
|
|
100
100
|
getScriptKind: (fileName) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-component-meta",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"main": "out/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"directory": "vue-language-tools/vue-component-meta"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@volar/language-core": "1.0.
|
|
17
|
-
"@volar/vue-language-core": "1.0.
|
|
16
|
+
"@volar/language-core": "1.0.10",
|
|
17
|
+
"@volar/vue-language-core": "1.0.10",
|
|
18
18
|
"typesafe-path": "^0.2.2"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"typescript": "*"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "89b82f92fdc30674b03941c5f17c60df8c46211c"
|
|
24
24
|
}
|