@biomejs/wasm-nodejs 1.5.3-nightly.24fcf19 → 1.5.3-nightly.69f9031
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 +104 -39
- package/biome_wasm.js +13 -13
- package/biome_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/biome_wasm.d.ts
CHANGED
|
@@ -21,12 +21,12 @@ type SupportKind =
|
|
|
21
21
|
| "FeatureNotEnabled"
|
|
22
22
|
| "FileNotSupported";
|
|
23
23
|
interface UpdateSettingsParams {
|
|
24
|
-
configuration:
|
|
24
|
+
configuration: PartialConfiguration;
|
|
25
25
|
gitignore_matches: string[];
|
|
26
26
|
vcs_base_path?: string;
|
|
27
27
|
working_directory?: string;
|
|
28
28
|
}
|
|
29
|
-
interface
|
|
29
|
+
interface PartialConfiguration {
|
|
30
30
|
/**
|
|
31
31
|
* A field for the [JSON schema](https://json-schema.org/) specification
|
|
32
32
|
*/
|
|
@@ -34,7 +34,7 @@ interface Configuration {
|
|
|
34
34
|
/**
|
|
35
35
|
* Specific configuration for the Css language
|
|
36
36
|
*/
|
|
37
|
-
css?:
|
|
37
|
+
css?: PartialCssConfiguration;
|
|
38
38
|
/**
|
|
39
39
|
* A list of paths to other JSON files, used to extends the current configuration.
|
|
40
40
|
*/
|
|
@@ -42,27 +42,27 @@ interface Configuration {
|
|
|
42
42
|
/**
|
|
43
43
|
* The configuration of the filesystem
|
|
44
44
|
*/
|
|
45
|
-
files?:
|
|
45
|
+
files?: PartialFilesConfiguration;
|
|
46
46
|
/**
|
|
47
47
|
* The configuration of the formatter
|
|
48
48
|
*/
|
|
49
|
-
formatter?:
|
|
49
|
+
formatter?: PartialFormatterConfiguration;
|
|
50
50
|
/**
|
|
51
51
|
* Specific configuration for the JavaScript language
|
|
52
52
|
*/
|
|
53
|
-
javascript?:
|
|
53
|
+
javascript?: PartialJavascriptConfiguration;
|
|
54
54
|
/**
|
|
55
55
|
* Specific configuration for the Json language
|
|
56
56
|
*/
|
|
57
|
-
json?:
|
|
57
|
+
json?: PartialJsonConfiguration;
|
|
58
58
|
/**
|
|
59
59
|
* The configuration for the linter
|
|
60
60
|
*/
|
|
61
|
-
linter?:
|
|
61
|
+
linter?: PartialLinterConfiguration;
|
|
62
62
|
/**
|
|
63
63
|
* The configuration of the import sorting
|
|
64
64
|
*/
|
|
65
|
-
organizeImports?:
|
|
65
|
+
organizeImports?: PartialOrganizeImports;
|
|
66
66
|
/**
|
|
67
67
|
* A list of granular patterns that should be applied only to a sub set of files
|
|
68
68
|
*/
|
|
@@ -70,20 +70,20 @@ interface Configuration {
|
|
|
70
70
|
/**
|
|
71
71
|
* The configuration of the VCS integration
|
|
72
72
|
*/
|
|
73
|
-
vcs?:
|
|
73
|
+
vcs?: PartialVcsConfiguration;
|
|
74
74
|
}
|
|
75
|
-
interface
|
|
75
|
+
interface PartialCssConfiguration {
|
|
76
76
|
/**
|
|
77
77
|
* Formatting options
|
|
78
78
|
*/
|
|
79
|
-
formatter?:
|
|
79
|
+
formatter?: PartialCssFormatter;
|
|
80
80
|
/**
|
|
81
81
|
* Parsing options
|
|
82
82
|
*/
|
|
83
|
-
parser?:
|
|
83
|
+
parser?: PartialCssParser;
|
|
84
84
|
}
|
|
85
85
|
type StringSet = string[];
|
|
86
|
-
interface
|
|
86
|
+
interface PartialFilesConfiguration {
|
|
87
87
|
/**
|
|
88
88
|
* A list of Unix shell style patterns. Biome will ignore files/folders that will match these patterns.
|
|
89
89
|
*/
|
|
@@ -101,7 +101,11 @@ interface FilesConfiguration {
|
|
|
101
101
|
*/
|
|
102
102
|
maxSize?: number;
|
|
103
103
|
}
|
|
104
|
-
interface
|
|
104
|
+
interface PartialFormatterConfiguration {
|
|
105
|
+
/**
|
|
106
|
+
* The attribute position style. By default auto.
|
|
107
|
+
*/
|
|
108
|
+
attributePosition?: AttributePosition;
|
|
105
109
|
enabled?: boolean;
|
|
106
110
|
/**
|
|
107
111
|
* Stores whether formatting should be allowed to proceed if a given file has syntax errors
|
|
@@ -136,34 +140,34 @@ interface FormatterConfiguration {
|
|
|
136
140
|
*/
|
|
137
141
|
lineWidth?: LineWidth;
|
|
138
142
|
}
|
|
139
|
-
interface
|
|
143
|
+
interface PartialJavascriptConfiguration {
|
|
140
144
|
/**
|
|
141
145
|
* Formatting options
|
|
142
146
|
*/
|
|
143
|
-
formatter?:
|
|
147
|
+
formatter?: PartialJavascriptFormatter;
|
|
144
148
|
/**
|
|
145
149
|
* A list of global bindings that should be ignored by the analyzers
|
|
146
150
|
|
|
147
151
|
If defined here, they should not emit diagnostics.
|
|
148
152
|
*/
|
|
149
153
|
globals?: StringSet;
|
|
150
|
-
organize_imports?:
|
|
154
|
+
organize_imports?: PartialJavascriptOrganizeImports;
|
|
151
155
|
/**
|
|
152
156
|
* Parsing options
|
|
153
157
|
*/
|
|
154
|
-
parser?:
|
|
158
|
+
parser?: PartialJavascriptParser;
|
|
155
159
|
}
|
|
156
|
-
interface
|
|
160
|
+
interface PartialJsonConfiguration {
|
|
157
161
|
/**
|
|
158
162
|
* Formatting options
|
|
159
163
|
*/
|
|
160
|
-
formatter?:
|
|
164
|
+
formatter?: PartialJsonFormatter;
|
|
161
165
|
/**
|
|
162
166
|
* Parsing options
|
|
163
167
|
*/
|
|
164
|
-
parser?:
|
|
168
|
+
parser?: PartialJsonParser;
|
|
165
169
|
}
|
|
166
|
-
interface
|
|
170
|
+
interface PartialLinterConfiguration {
|
|
167
171
|
/**
|
|
168
172
|
* if `false`, it disables the feature and the linter won't be executed. `true` by default
|
|
169
173
|
*/
|
|
@@ -181,7 +185,7 @@ interface LinterConfiguration {
|
|
|
181
185
|
*/
|
|
182
186
|
rules?: Rules;
|
|
183
187
|
}
|
|
184
|
-
interface
|
|
188
|
+
interface PartialOrganizeImports {
|
|
185
189
|
/**
|
|
186
190
|
* Enables the organization of imports
|
|
187
191
|
*/
|
|
@@ -196,7 +200,7 @@ interface OrganizeImports {
|
|
|
196
200
|
include?: StringSet;
|
|
197
201
|
}
|
|
198
202
|
type Overrides = OverridePattern[];
|
|
199
|
-
interface
|
|
203
|
+
interface PartialVcsConfiguration {
|
|
200
204
|
/**
|
|
201
205
|
* The kind of client.
|
|
202
206
|
*/
|
|
@@ -220,7 +224,7 @@ If Biome can't find the configuration, it will attempt to use the current workin
|
|
|
220
224
|
*/
|
|
221
225
|
useIgnoreFile?: boolean;
|
|
222
226
|
}
|
|
223
|
-
interface
|
|
227
|
+
interface PartialCssFormatter {
|
|
224
228
|
/**
|
|
225
229
|
* Control the formatter for CSS (and its super languages) files.
|
|
226
230
|
*/
|
|
@@ -247,20 +251,25 @@ interface CssFormatter {
|
|
|
247
251
|
lineWidth?: LineWidth;
|
|
248
252
|
quoteStyle?: QuoteStyle;
|
|
249
253
|
}
|
|
250
|
-
interface
|
|
254
|
+
interface PartialCssParser {
|
|
251
255
|
/**
|
|
252
256
|
* Allow comments to appear on incorrect lines in `.css` files
|
|
253
257
|
*/
|
|
254
258
|
allowWrongLineComments?: boolean;
|
|
255
259
|
}
|
|
260
|
+
type AttributePosition = "auto" | "multiline";
|
|
256
261
|
type PlainIndentStyle = "tab" | "space";
|
|
257
262
|
type LineEnding = "lf" | "crlf" | "cr";
|
|
258
263
|
type LineWidth = number;
|
|
259
|
-
interface
|
|
264
|
+
interface PartialJavascriptFormatter {
|
|
260
265
|
/**
|
|
261
266
|
* Whether to add non-necessary parentheses to arrow functions. Defaults to "always".
|
|
262
267
|
*/
|
|
263
268
|
arrowParentheses?: ArrowParentheses;
|
|
269
|
+
/**
|
|
270
|
+
* The attribute position style in JavaScript code. Defaults to auto.
|
|
271
|
+
*/
|
|
272
|
+
attributePosition?: AttributePosition;
|
|
264
273
|
/**
|
|
265
274
|
* Whether to hug the closing bracket of multiline HTML/JSX tags to the end of the last line, rather than being alone on the following line. Defaults to false.
|
|
266
275
|
*/
|
|
@@ -314,8 +323,8 @@ interface JavascriptFormatter {
|
|
|
314
323
|
*/
|
|
315
324
|
trailingComma?: TrailingComma;
|
|
316
325
|
}
|
|
317
|
-
interface
|
|
318
|
-
interface
|
|
326
|
+
interface PartialJavascriptOrganizeImports {}
|
|
327
|
+
interface PartialJavascriptParser {
|
|
319
328
|
/**
|
|
320
329
|
* It enables the experimental and unsafe parsing of parameter decorators
|
|
321
330
|
|
|
@@ -323,7 +332,7 @@ These decorators belong to an old proposal, and they are subject to change.
|
|
|
323
332
|
*/
|
|
324
333
|
unsafeParameterDecoratorsEnabled?: boolean;
|
|
325
334
|
}
|
|
326
|
-
interface
|
|
335
|
+
interface PartialJsonFormatter {
|
|
327
336
|
/**
|
|
328
337
|
* Control the formatter for JSON (and its super languages) files.
|
|
329
338
|
*/
|
|
@@ -349,7 +358,7 @@ interface JsonFormatter {
|
|
|
349
358
|
*/
|
|
350
359
|
lineWidth?: LineWidth;
|
|
351
360
|
}
|
|
352
|
-
interface
|
|
361
|
+
interface PartialJsonParser {
|
|
353
362
|
/**
|
|
354
363
|
* Allow parsing comments in `.json` files
|
|
355
364
|
*/
|
|
@@ -381,7 +390,7 @@ interface OverridePattern {
|
|
|
381
390
|
/**
|
|
382
391
|
* Specific configuration for the Css language
|
|
383
392
|
*/
|
|
384
|
-
css?:
|
|
393
|
+
css?: PartialCssConfiguration;
|
|
385
394
|
/**
|
|
386
395
|
* Specific configuration for the Json language
|
|
387
396
|
*/
|
|
@@ -397,11 +406,11 @@ interface OverridePattern {
|
|
|
397
406
|
/**
|
|
398
407
|
* Specific configuration for the JavaScript language
|
|
399
408
|
*/
|
|
400
|
-
javascript?:
|
|
409
|
+
javascript?: PartialJavascriptConfiguration;
|
|
401
410
|
/**
|
|
402
411
|
* Specific configuration for the Json language
|
|
403
412
|
*/
|
|
404
|
-
json?:
|
|
413
|
+
json?: PartialJsonConfiguration;
|
|
405
414
|
/**
|
|
406
415
|
* Specific configuration for the Json language
|
|
407
416
|
*/
|
|
@@ -804,6 +813,10 @@ interface Nursery {
|
|
|
804
813
|
* It enables ALL rules for this group.
|
|
805
814
|
*/
|
|
806
815
|
all?: boolean;
|
|
816
|
+
/**
|
|
817
|
+
* Disallow the use of console.
|
|
818
|
+
*/
|
|
819
|
+
noConsole?: RuleConfiguration;
|
|
807
820
|
/**
|
|
808
821
|
* Disallow two keys with the same name inside a JSON object.
|
|
809
822
|
*/
|
|
@@ -836,10 +849,22 @@ interface Nursery {
|
|
|
836
849
|
* Disallow characters made with multiple code points in character class syntax.
|
|
837
850
|
*/
|
|
838
851
|
noMisleadingCharacterClass?: RuleConfiguration;
|
|
852
|
+
/**
|
|
853
|
+
* Disallow the use of namespace imports.
|
|
854
|
+
*/
|
|
855
|
+
noNamespaceImport?: RuleConfiguration;
|
|
839
856
|
/**
|
|
840
857
|
* Forbid the use of Node.js builtin modules.
|
|
841
858
|
*/
|
|
842
859
|
noNodejsModules?: RuleConfiguration;
|
|
860
|
+
/**
|
|
861
|
+
* Avoid re-export all.
|
|
862
|
+
*/
|
|
863
|
+
noReExportAll?: RuleConfiguration;
|
|
864
|
+
/**
|
|
865
|
+
* Disallow specified modules when loaded by import or require.
|
|
866
|
+
*/
|
|
867
|
+
noRestrictedImports?: RuleConfiguration;
|
|
843
868
|
/**
|
|
844
869
|
* Disallow disabled tests.
|
|
845
870
|
*/
|
|
@@ -848,6 +873,10 @@ interface Nursery {
|
|
|
848
873
|
* Disallow then property.
|
|
849
874
|
*/
|
|
850
875
|
noThenProperty?: RuleConfiguration;
|
|
876
|
+
/**
|
|
877
|
+
* Disallow the use of dependencies that aren't specified in the package.json.
|
|
878
|
+
*/
|
|
879
|
+
noUndeclaredDependencies?: RuleConfiguration;
|
|
851
880
|
/**
|
|
852
881
|
* Disallow unused imports.
|
|
853
882
|
*/
|
|
@@ -900,6 +929,10 @@ interface Nursery {
|
|
|
900
929
|
* Promotes the use of import type for types.
|
|
901
930
|
*/
|
|
902
931
|
useImportType?: RuleConfiguration;
|
|
932
|
+
/**
|
|
933
|
+
* Promotes the usage of node:assert/strict over node:assert.
|
|
934
|
+
*/
|
|
935
|
+
useNodeAssertStrict?: RuleConfiguration;
|
|
903
936
|
/**
|
|
904
937
|
* Enforces using the node: protocol for Node.js builtin modules.
|
|
905
938
|
*/
|
|
@@ -1101,7 +1134,7 @@ interface Suspicious {
|
|
|
1101
1134
|
*/
|
|
1102
1135
|
all?: boolean;
|
|
1103
1136
|
/**
|
|
1104
|
-
*
|
|
1137
|
+
* Use standard constants instead of approximated literals.
|
|
1105
1138
|
*/
|
|
1106
1139
|
noApproximativeNumericConstant?: RuleConfiguration;
|
|
1107
1140
|
/**
|
|
@@ -1286,6 +1319,10 @@ interface Suspicious {
|
|
|
1286
1319
|
useValidTypeof?: RuleConfiguration;
|
|
1287
1320
|
}
|
|
1288
1321
|
interface OverrideFormatterConfiguration {
|
|
1322
|
+
/**
|
|
1323
|
+
* The attribute position style.
|
|
1324
|
+
*/
|
|
1325
|
+
attributePosition?: AttributePosition;
|
|
1289
1326
|
enabled?: boolean;
|
|
1290
1327
|
/**
|
|
1291
1328
|
* Stores whether formatting should be allowed to proceed if a given file has syntax errors
|
|
@@ -1342,6 +1379,7 @@ type PossibleOptions =
|
|
|
1342
1379
|
| DeprecatedHooksOptions
|
|
1343
1380
|
| NamingConventionOptions
|
|
1344
1381
|
| RestrictedGlobalsOptions
|
|
1382
|
+
| RestrictedImportsOptions
|
|
1345
1383
|
| ValidAriaRoleOptions
|
|
1346
1384
|
| UtilityClassSortingOptions;
|
|
1347
1385
|
interface ComplexityOptions {
|
|
@@ -1358,6 +1396,10 @@ interface FilenamingConventionOptions {
|
|
|
1358
1396
|
* Allowed cases for _TypeScript_ `enum` member names.
|
|
1359
1397
|
*/
|
|
1360
1398
|
filenameCases: FilenameCases;
|
|
1399
|
+
/**
|
|
1400
|
+
* If `false`, then non-ASCII characters are allowed.
|
|
1401
|
+
*/
|
|
1402
|
+
requireAscii: boolean;
|
|
1361
1403
|
/**
|
|
1362
1404
|
* If `false`, then consecutive uppercase are allowed in _camel_ and _pascal_ cases. This does not affect other [Case].
|
|
1363
1405
|
*/
|
|
@@ -1375,6 +1417,10 @@ interface NamingConventionOptions {
|
|
|
1375
1417
|
* Allowed cases for _TypeScript_ `enum` member names.
|
|
1376
1418
|
*/
|
|
1377
1419
|
enumMemberCase: EnumMemberCase;
|
|
1420
|
+
/**
|
|
1421
|
+
* If `false`, then non-ASCII characters are allowed.
|
|
1422
|
+
*/
|
|
1423
|
+
requireAscii: boolean;
|
|
1378
1424
|
/**
|
|
1379
1425
|
* If `false`, then consecutive uppercase are allowed in _camel_ and _pascal_ cases. This does not affect other [Case].
|
|
1380
1426
|
*/
|
|
@@ -1386,6 +1432,12 @@ interface RestrictedGlobalsOptions {
|
|
|
1386
1432
|
*/
|
|
1387
1433
|
deniedGlobals: string[];
|
|
1388
1434
|
}
|
|
1435
|
+
interface RestrictedImportsOptions {
|
|
1436
|
+
/**
|
|
1437
|
+
* A list of names that should trigger the rule
|
|
1438
|
+
*/
|
|
1439
|
+
paths: {};
|
|
1440
|
+
}
|
|
1389
1441
|
interface ValidAriaRoleOptions {
|
|
1390
1442
|
allowInvalidRoles: string[];
|
|
1391
1443
|
ignoreNonDom: boolean;
|
|
@@ -1425,10 +1477,14 @@ type FilenameCase =
|
|
|
1425
1477
|
| "kebab-case"
|
|
1426
1478
|
| "PascalCase"
|
|
1427
1479
|
| "snake_case";
|
|
1428
|
-
interface
|
|
1429
|
-
|
|
1480
|
+
interface UpdateProjectParams {
|
|
1481
|
+
path: RomePath;
|
|
1482
|
+
}
|
|
1483
|
+
interface OpenProjectParams {
|
|
1484
|
+
content: string;
|
|
1485
|
+
path: RomePath;
|
|
1486
|
+
version: number;
|
|
1430
1487
|
}
|
|
1431
|
-
interface ProjectFeaturesResult {}
|
|
1432
1488
|
interface OpenFileParams {
|
|
1433
1489
|
content: string;
|
|
1434
1490
|
language_hint?: Language;
|
|
@@ -1436,6 +1492,9 @@ interface OpenFileParams {
|
|
|
1436
1492
|
version: number;
|
|
1437
1493
|
}
|
|
1438
1494
|
type Language =
|
|
1495
|
+
| "Astro"
|
|
1496
|
+
| "Vue"
|
|
1497
|
+
| "Svelte"
|
|
1439
1498
|
| "JavaScript"
|
|
1440
1499
|
| "JavaScriptReact"
|
|
1441
1500
|
| "TypeScript"
|
|
@@ -1592,6 +1651,7 @@ type Category =
|
|
|
1592
1651
|
| "lint/correctness/useValidForDirection"
|
|
1593
1652
|
| "lint/correctness/useYield"
|
|
1594
1653
|
| "lint/nursery/noApproximativeNumericConstant"
|
|
1654
|
+
| "lint/nursery/noConsole"
|
|
1595
1655
|
| "lint/nursery/noDuplicateJsonKeys"
|
|
1596
1656
|
| "lint/nursery/noEmptyBlockStatements"
|
|
1597
1657
|
| "lint/nursery/noEmptyTypeParameters"
|
|
@@ -1600,10 +1660,14 @@ type Category =
|
|
|
1600
1660
|
| "lint/nursery/noGlobalEval"
|
|
1601
1661
|
| "lint/nursery/noInvalidUseBeforeDeclaration"
|
|
1602
1662
|
| "lint/nursery/noMisleadingCharacterClass"
|
|
1663
|
+
| "lint/nursery/noNamespaceImport"
|
|
1603
1664
|
| "lint/nursery/noNodejsModules"
|
|
1665
|
+
| "lint/nursery/noReExportAll"
|
|
1666
|
+
| "lint/nursery/noRestrictedImports"
|
|
1604
1667
|
| "lint/nursery/noSkippedTests"
|
|
1605
1668
|
| "lint/nursery/noThenProperty"
|
|
1606
1669
|
| "lint/nursery/noTypeOnlyImportAttributes"
|
|
1670
|
+
| "lint/nursery/noUndeclaredDependencies"
|
|
1607
1671
|
| "lint/nursery/noUnusedImports"
|
|
1608
1672
|
| "lint/nursery/noUnusedPrivateClassMembers"
|
|
1609
1673
|
| "lint/nursery/noUselessLoneBlockStatements"
|
|
@@ -1617,6 +1681,7 @@ type Category =
|
|
|
1617
1681
|
| "lint/nursery/useGroupedTypeImport"
|
|
1618
1682
|
| "lint/nursery/useImportRestrictions"
|
|
1619
1683
|
| "lint/nursery/useImportType"
|
|
1684
|
+
| "lint/nursery/useNodeAssertStrict"
|
|
1620
1685
|
| "lint/nursery/useNodejsImportProtocol"
|
|
1621
1686
|
| "lint/nursery/useNumberNamespace"
|
|
1622
1687
|
| "lint/nursery/useShorthandFunctionType"
|
package/biome_wasm.js
CHANGED
|
@@ -733,29 +733,21 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
733
733
|
return ret;
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
737
|
-
const ret = getObject(arg0);
|
|
738
|
-
return addHeapObject(ret);
|
|
739
|
-
};
|
|
740
|
-
|
|
741
736
|
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
742
737
|
const ret = getObject(arg0) == getObject(arg1);
|
|
743
738
|
return ret;
|
|
744
739
|
};
|
|
745
740
|
|
|
746
|
-
module.exports.__wbg_String_91fba7ded13ba54c = function(arg0, arg1) {
|
|
747
|
-
const ret = String(getObject(arg1));
|
|
748
|
-
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
749
|
-
const len0 = WASM_VECTOR_LEN;
|
|
750
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
751
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
752
|
-
};
|
|
753
|
-
|
|
754
741
|
module.exports.__wbindgen_number_new = function(arg0) {
|
|
755
742
|
const ret = arg0;
|
|
756
743
|
return addHeapObject(ret);
|
|
757
744
|
};
|
|
758
745
|
|
|
746
|
+
module.exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
747
|
+
const ret = getObject(arg0);
|
|
748
|
+
return addHeapObject(ret);
|
|
749
|
+
};
|
|
750
|
+
|
|
759
751
|
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
760
752
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
761
753
|
return addHeapObject(ret);
|
|
@@ -770,6 +762,14 @@ module.exports.__wbg_set_20cbc34131e76824 = function(arg0, arg1, arg2) {
|
|
|
770
762
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
771
763
|
};
|
|
772
764
|
|
|
765
|
+
module.exports.__wbg_String_91fba7ded13ba54c = function(arg0, arg1) {
|
|
766
|
+
const ret = String(getObject(arg1));
|
|
767
|
+
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
768
|
+
const len0 = WASM_VECTOR_LEN;
|
|
769
|
+
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
|
770
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
|
771
|
+
};
|
|
772
|
+
|
|
773
773
|
module.exports.__wbg_new_abda76e883ba8a5f = function() {
|
|
774
774
|
const ret = new Error();
|
|
775
775
|
return addHeapObject(ret);
|
package/biome_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.
|
|
1
|
+
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.69f9031","license":"MIT OR Apache-2.0","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"main":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","keywords":["parser","linter","formatter"]}
|