@astrojs/compiler 2.10.1 → 2.10.2

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/dist/astro.wasm CHANGED
Binary file
@@ -103,6 +103,10 @@ interface SourceMap {
103
103
  sourcesContent: string[];
104
104
  version: number;
105
105
  }
106
+ /**
107
+ * Represents a location in a TSX file.
108
+ * Both the `start` and `end` properties are 0-based, and are based off utf-16 code units. (i.e. JavaScript's `String.prototype.length`)
109
+ */
106
110
  interface TSXLocation {
107
111
  start: number;
108
112
  end: number;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "bugs": "https://github.com/withastro/compiler/issues",
7
7
  "homepage": "https://astro.build",
8
- "version": "2.10.1",
8
+ "version": "2.10.2",
9
9
  "main": "./dist/node/index.js",
10
10
  "types": "./dist/shared/types.d.ts",
11
11
  "repository": {