@biomejs/wasm-web 1.8.2 → 1.8.3

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/biome_wasm.d.ts CHANGED
@@ -945,6 +945,10 @@ interface Nursery {
945
945
  * Disallow variables from evolving into any type through reassignments.
946
946
  */
947
947
  noEvolvingTypes?: RuleConfiguration_for_Null;
948
+ /**
949
+ * Disallow exporting an imported variable.
950
+ */
951
+ noExportedImports?: RuleConfiguration_for_Null;
948
952
  /**
949
953
  * Disallow invalid !important within keyframe declarations
950
954
  */
@@ -1053,6 +1057,10 @@ interface Nursery {
1053
1057
  * Require the default clause in switch statements.
1054
1058
  */
1055
1059
  useDefaultSwitchClause?: RuleConfiguration_for_Null;
1060
+ /**
1061
+ * Require specifying the reason argument when using @deprecated directive
1062
+ */
1063
+ useDeprecatedReason?: RuleConfiguration_for_Null;
1056
1064
  /**
1057
1065
  * Enforce passing a message value when creating a built-in error.
1058
1066
  */
@@ -2047,7 +2055,8 @@ type DocumentFileSource =
2047
2055
  | "Unknown"
2048
2056
  | { Js: JsFileSource }
2049
2057
  | { Json: JsonFileSource }
2050
- | { Css: CssFileSource };
2058
+ | { Css: CssFileSource }
2059
+ | { Graphql: GraphqlFileSource };
2051
2060
  interface JsFileSource {
2052
2061
  /**
2053
2062
  * Used to mark if the source is being used for an Astro, Svelte or Vue file
@@ -2065,6 +2074,7 @@ interface JsonFileSource {
2065
2074
  interface CssFileSource {
2066
2075
  variant: CssVariant;
2067
2076
  }
2077
+ interface GraphqlFileSource {}
2068
2078
  type EmbeddingKind = "Astro" | "Vue" | "Svelte" | "None";
2069
2079
  type Language = "JavaScript" | { TypeScript: { definition_file: boolean } };
2070
2080
  type ModuleKind = "Script" | "Module";
@@ -2244,6 +2254,7 @@ type Category =
2244
2254
  | "lint/nursery/noDuplicateSelectorsKeyframeBlock"
2245
2255
  | "lint/nursery/noEmptyBlock"
2246
2256
  | "lint/nursery/noEvolvingTypes"
2257
+ | "lint/nursery/noExportedImports"
2247
2258
  | "lint/nursery/noImportantInKeyframe"
2248
2259
  | "lint/nursery/noInvalidDirectionInLinearGradient"
2249
2260
  | "lint/nursery/noInvalidPositionAtImportRule"
@@ -2273,6 +2284,7 @@ type Category =
2273
2284
  | "lint/nursery/useConsistentGridAreas"
2274
2285
  | "lint/nursery/useDateNow"
2275
2286
  | "lint/nursery/useDefaultSwitchClause"
2287
+ | "lint/nursery/useDeprecatedReason"
2276
2288
  | "lint/nursery/useErrorMessage"
2277
2289
  | "lint/nursery/useExplicitLengthCheck"
2278
2290
  | "lint/nursery/useFocusableInteractive"
Binary file
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "Biome Developers and Contributors"
5
5
  ],
6
6
  "description": "WebAssembly bindings to the Biome workspace API",
7
- "version": "1.8.2",
7
+ "version": "1.8.3",
8
8
  "license": "MIT OR Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",