volar-service-html 0.0.70 → 0.0.71

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/index.js +1 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -123,7 +123,7 @@ function create({ documentSelector = ['html'], configurationSections = {
123
123
  const htmlDocuments = new WeakMap();
124
124
  const fileSystemProvider = {
125
125
  stat: async (uri) => await context.env.fs?.stat(vscode_uri_1.URI.parse(uri))
126
- ?? { type: html.FileType.Unknown, ctime: 0, mtime: 0, size: 0 },
126
+ ?? { type: html.FileType.Unknown, ctime: 0, mtime: 0, size: -1 },
127
127
  readDirectory: async (uri) => await context.env.fs?.readDirectory(vscode_uri_1.URI.parse(uri)) ?? [],
128
128
  };
129
129
  const documentContext = getDocumentContext(context);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "volar-service-html",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "description": "Integrate vscode-languageservice-html into Volar",
5
5
  "homepage": "https://github.com/volarjs/services/tree/master/packages/html",
6
6
  "bugs": "https://github.com/volarjs/services/issues",
@@ -39,5 +39,5 @@
39
39
  "optional": true
40
40
  }
41
41
  },
42
- "gitHead": "7b44bad4ed74539f114089edf7ee299b4ce19539"
42
+ "gitHead": "ce25205adf873830449078ff54f705edc64778e9"
43
43
  }