@astrojs/compiler 2.9.2 → 2.10.1

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
@@ -112,10 +112,11 @@ interface TSXExtractedTag {
112
112
  content: string;
113
113
  }
114
114
  interface TSXExtractedScript extends TSXExtractedTag {
115
- type: 'processed-module' | 'module' | 'inline' | 'event-attribute' | 'json' | 'unknown';
115
+ type: 'processed-module' | 'module' | 'inline' | 'event-attribute' | 'json' | 'raw' | 'unknown';
116
116
  }
117
117
  interface TSXExtractedStyle extends TSXExtractedTag {
118
118
  type: 'tag' | 'style-attribute';
119
+ lang: 'css' | 'scss' | 'sass' | 'less' | 'stylus' | 'styl' | 'postcss' | 'pcss' | 'unknown' | (string & {});
119
120
  }
120
121
  interface TSXResult {
121
122
  code: string;
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.9.2",
8
+ "version": "2.10.1",
9
9
  "main": "./dist/node/index.js",
10
10
  "types": "./dist/shared/types.d.ts",
11
11
  "repository": {