oxfmt 0.56.0 → 0.57.0
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/{apis-C2fbFQF2.js → apis-CvFX8LhR.js} +3 -3
- package/dist/{bindings-Ab6hoO7p.js → bindings-Cj_GMsoO.js} +26 -26
- package/dist/{chunk-DSjvVL_1-DaTvESxp.js → chunk-DSjvVL_1-DllBg9tc.js} +1 -1
- package/dist/cli-worker.js +1 -1
- package/dist/cli.js +1 -1
- package/dist/{dist-BMp5jzRv.js → dist-BKyxiMdj.js} +4 -4
- package/dist/index.js +3 -3
- package/dist/{jiti-Bb1dT6Cw-DWQc1k7j.js → jiti-Bb1dT6Cw-0c6As3U-.js} +2 -2
- package/dist/{plugin-CYEM2898.js → plugin-BuVceHGR.js} +1 -1
- package/dist/{sorter-BZkvDMjt-c-GMCzH3.js → sorter-BZkvDMjt-C8qUPUh2.js} +7 -7
- package/dist/{sorter-DK1aMCjs.js → sorter-DSVZH4kF.js} +1 -1
- package/dist/{v3-D-mr2VVh-7G9Y2N0Q.js → v3-D-mr2VVh-Ch8a-2Ce.js} +4 -4
- package/dist/{v4-C-HWEQJm-DKnDZXAs.js → v4-C-HWEQJm-DheWK34Z.js} +4 -4
- package/package.json +20 -20
|
@@ -84,7 +84,7 @@ async function formatEmbeddedDoc({ texts, options }) {
|
|
|
84
84
|
* Option mapping (sortTailwindcss.xxx → tailwindXxx) is also done in Rust side.
|
|
85
85
|
*/
|
|
86
86
|
async function setupTailwindPlugin(options) {
|
|
87
|
-
CACHES.tailwindPlugin ??= await loadCached("tailwindPlugin", () => import("./dist-
|
|
87
|
+
CACHES.tailwindPlugin ??= await loadCached("tailwindPlugin", () => import("./dist-BKyxiMdj.js"));
|
|
88
88
|
options.plugins ??= [];
|
|
89
89
|
options.plugins.push(CACHES.tailwindPlugin);
|
|
90
90
|
}
|
|
@@ -94,7 +94,7 @@ async function setupTailwindPlugin(options) {
|
|
|
94
94
|
* @returns Array of sorted class strings (same order/length as input)
|
|
95
95
|
*/
|
|
96
96
|
async function sortTailwindClasses({ classes, options }) {
|
|
97
|
-
CACHES.tailwindSorter ??= await loadCached("tailwindSorter", () => import("./sorter-
|
|
97
|
+
CACHES.tailwindSorter ??= await loadCached("tailwindSorter", () => import("./sorter-DSVZH4kF.js"));
|
|
98
98
|
const { createSorter } = CACHES.tailwindSorter;
|
|
99
99
|
return (await createSorter({
|
|
100
100
|
filepath: options.filepath,
|
|
@@ -108,7 +108,7 @@ async function sortTailwindClasses({ classes, options }) {
|
|
|
108
108
|
* Load prettier-plugin-svelte to provide the `svelte` parser.
|
|
109
109
|
*/
|
|
110
110
|
async function setupSveltePlugin(options) {
|
|
111
|
-
CACHES.sveltePlugin ??= await loadCached("sveltePlugin", async () => await import("./plugin-
|
|
111
|
+
CACHES.sveltePlugin ??= await loadCached("sveltePlugin", async () => await import("./plugin-BuVceHGR.js").then((m) => /* @__PURE__ */ __toESM(m.default, 1)));
|
|
112
112
|
options.plugins ??= [];
|
|
113
113
|
options.plugins.push(CACHES.sveltePlugin);
|
|
114
114
|
}
|
|
@@ -64,7 +64,7 @@ function requireNative() {
|
|
|
64
64
|
try {
|
|
65
65
|
const binding = require("@oxfmt/binding-android-arm64");
|
|
66
66
|
const bindingPackageVersion = require("@oxfmt/binding-android-arm64/package.json").version;
|
|
67
|
-
if (bindingPackageVersion !== "0.
|
|
67
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
68
68
|
return binding;
|
|
69
69
|
} catch (e) {
|
|
70
70
|
loadErrors.push(e);
|
|
@@ -78,7 +78,7 @@ function requireNative() {
|
|
|
78
78
|
try {
|
|
79
79
|
const binding = require("@oxfmt/binding-android-arm-eabi");
|
|
80
80
|
const bindingPackageVersion = require("@oxfmt/binding-android-arm-eabi/package.json").version;
|
|
81
|
-
if (bindingPackageVersion !== "0.
|
|
81
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
82
82
|
return binding;
|
|
83
83
|
} catch (e) {
|
|
84
84
|
loadErrors.push(e);
|
|
@@ -93,7 +93,7 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require("@oxfmt/binding-win32-x64-gnu");
|
|
95
95
|
const bindingPackageVersion = require("@oxfmt/binding-win32-x64-gnu/package.json").version;
|
|
96
|
-
if (bindingPackageVersion !== "0.
|
|
96
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
97
97
|
return binding;
|
|
98
98
|
} catch (e) {
|
|
99
99
|
loadErrors.push(e);
|
|
@@ -107,7 +107,7 @@ function requireNative() {
|
|
|
107
107
|
try {
|
|
108
108
|
const binding = require("@oxfmt/binding-win32-x64-msvc");
|
|
109
109
|
const bindingPackageVersion = require("@oxfmt/binding-win32-x64-msvc/package.json").version;
|
|
110
|
-
if (bindingPackageVersion !== "0.
|
|
110
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
111
111
|
return binding;
|
|
112
112
|
} catch (e) {
|
|
113
113
|
loadErrors.push(e);
|
|
@@ -122,7 +122,7 @@ function requireNative() {
|
|
|
122
122
|
try {
|
|
123
123
|
const binding = require("@oxfmt/binding-win32-ia32-msvc");
|
|
124
124
|
const bindingPackageVersion = require("@oxfmt/binding-win32-ia32-msvc/package.json").version;
|
|
125
|
-
if (bindingPackageVersion !== "0.
|
|
125
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
126
126
|
return binding;
|
|
127
127
|
} catch (e) {
|
|
128
128
|
loadErrors.push(e);
|
|
@@ -136,7 +136,7 @@ function requireNative() {
|
|
|
136
136
|
try {
|
|
137
137
|
const binding = require("@oxfmt/binding-win32-arm64-msvc");
|
|
138
138
|
const bindingPackageVersion = require("@oxfmt/binding-win32-arm64-msvc/package.json").version;
|
|
139
|
-
if (bindingPackageVersion !== "0.
|
|
139
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
140
140
|
return binding;
|
|
141
141
|
} catch (e) {
|
|
142
142
|
loadErrors.push(e);
|
|
@@ -151,7 +151,7 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require("@oxfmt/binding-darwin-universal");
|
|
153
153
|
const bindingPackageVersion = require("@oxfmt/binding-darwin-universal/package.json").version;
|
|
154
|
-
if (bindingPackageVersion !== "0.
|
|
154
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
155
155
|
return binding;
|
|
156
156
|
} catch (e) {
|
|
157
157
|
loadErrors.push(e);
|
|
@@ -165,7 +165,7 @@ function requireNative() {
|
|
|
165
165
|
try {
|
|
166
166
|
const binding = require("@oxfmt/binding-darwin-x64");
|
|
167
167
|
const bindingPackageVersion = require("@oxfmt/binding-darwin-x64/package.json").version;
|
|
168
|
-
if (bindingPackageVersion !== "0.
|
|
168
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
169
169
|
return binding;
|
|
170
170
|
} catch (e) {
|
|
171
171
|
loadErrors.push(e);
|
|
@@ -179,7 +179,7 @@ function requireNative() {
|
|
|
179
179
|
try {
|
|
180
180
|
const binding = require("@oxfmt/binding-darwin-arm64");
|
|
181
181
|
const bindingPackageVersion = require("@oxfmt/binding-darwin-arm64/package.json").version;
|
|
182
|
-
if (bindingPackageVersion !== "0.
|
|
182
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
183
183
|
return binding;
|
|
184
184
|
} catch (e) {
|
|
185
185
|
loadErrors.push(e);
|
|
@@ -194,7 +194,7 @@ function requireNative() {
|
|
|
194
194
|
try {
|
|
195
195
|
const binding = require("@oxfmt/binding-freebsd-x64");
|
|
196
196
|
const bindingPackageVersion = require("@oxfmt/binding-freebsd-x64/package.json").version;
|
|
197
|
-
if (bindingPackageVersion !== "0.
|
|
197
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
198
198
|
return binding;
|
|
199
199
|
} catch (e) {
|
|
200
200
|
loadErrors.push(e);
|
|
@@ -208,7 +208,7 @@ function requireNative() {
|
|
|
208
208
|
try {
|
|
209
209
|
const binding = require("@oxfmt/binding-freebsd-arm64");
|
|
210
210
|
const bindingPackageVersion = require("@oxfmt/binding-freebsd-arm64/package.json").version;
|
|
211
|
-
if (bindingPackageVersion !== "0.
|
|
211
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
212
212
|
return binding;
|
|
213
213
|
} catch (e) {
|
|
214
214
|
loadErrors.push(e);
|
|
@@ -223,7 +223,7 @@ function requireNative() {
|
|
|
223
223
|
try {
|
|
224
224
|
const binding = require("@oxfmt/binding-linux-x64-musl");
|
|
225
225
|
const bindingPackageVersion = require("@oxfmt/binding-linux-x64-musl/package.json").version;
|
|
226
|
-
if (bindingPackageVersion !== "0.
|
|
226
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
227
227
|
return binding;
|
|
228
228
|
} catch (e) {
|
|
229
229
|
loadErrors.push(e);
|
|
@@ -237,7 +237,7 @@ function requireNative() {
|
|
|
237
237
|
try {
|
|
238
238
|
const binding = require("@oxfmt/binding-linux-x64-gnu");
|
|
239
239
|
const bindingPackageVersion = require("@oxfmt/binding-linux-x64-gnu/package.json").version;
|
|
240
|
-
if (bindingPackageVersion !== "0.
|
|
240
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
241
241
|
return binding;
|
|
242
242
|
} catch (e) {
|
|
243
243
|
loadErrors.push(e);
|
|
@@ -252,7 +252,7 @@ function requireNative() {
|
|
|
252
252
|
try {
|
|
253
253
|
const binding = require("@oxfmt/binding-linux-arm64-musl");
|
|
254
254
|
const bindingPackageVersion = require("@oxfmt/binding-linux-arm64-musl/package.json").version;
|
|
255
|
-
if (bindingPackageVersion !== "0.
|
|
255
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
256
256
|
return binding;
|
|
257
257
|
} catch (e) {
|
|
258
258
|
loadErrors.push(e);
|
|
@@ -266,7 +266,7 @@ function requireNative() {
|
|
|
266
266
|
try {
|
|
267
267
|
const binding = require("@oxfmt/binding-linux-arm64-gnu");
|
|
268
268
|
const bindingPackageVersion = require("@oxfmt/binding-linux-arm64-gnu/package.json").version;
|
|
269
|
-
if (bindingPackageVersion !== "0.
|
|
269
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
270
270
|
return binding;
|
|
271
271
|
} catch (e) {
|
|
272
272
|
loadErrors.push(e);
|
|
@@ -281,7 +281,7 @@ function requireNative() {
|
|
|
281
281
|
try {
|
|
282
282
|
const binding = require("@oxfmt/binding-linux-arm-musleabihf");
|
|
283
283
|
const bindingPackageVersion = require("@oxfmt/binding-linux-arm-musleabihf/package.json").version;
|
|
284
|
-
if (bindingPackageVersion !== "0.
|
|
284
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
285
285
|
return binding;
|
|
286
286
|
} catch (e) {
|
|
287
287
|
loadErrors.push(e);
|
|
@@ -295,7 +295,7 @@ function requireNative() {
|
|
|
295
295
|
try {
|
|
296
296
|
const binding = require("@oxfmt/binding-linux-arm-gnueabihf");
|
|
297
297
|
const bindingPackageVersion = require("@oxfmt/binding-linux-arm-gnueabihf/package.json").version;
|
|
298
|
-
if (bindingPackageVersion !== "0.
|
|
298
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
299
299
|
return binding;
|
|
300
300
|
} catch (e) {
|
|
301
301
|
loadErrors.push(e);
|
|
@@ -310,7 +310,7 @@ function requireNative() {
|
|
|
310
310
|
try {
|
|
311
311
|
const binding = require("@oxfmt/binding-linux-loong64-musl");
|
|
312
312
|
const bindingPackageVersion = require("@oxfmt/binding-linux-loong64-musl/package.json").version;
|
|
313
|
-
if (bindingPackageVersion !== "0.
|
|
313
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
314
314
|
return binding;
|
|
315
315
|
} catch (e) {
|
|
316
316
|
loadErrors.push(e);
|
|
@@ -324,7 +324,7 @@ function requireNative() {
|
|
|
324
324
|
try {
|
|
325
325
|
const binding = require("@oxfmt/binding-linux-loong64-gnu");
|
|
326
326
|
const bindingPackageVersion = require("@oxfmt/binding-linux-loong64-gnu/package.json").version;
|
|
327
|
-
if (bindingPackageVersion !== "0.
|
|
327
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
328
328
|
return binding;
|
|
329
329
|
} catch (e) {
|
|
330
330
|
loadErrors.push(e);
|
|
@@ -339,7 +339,7 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require("@oxfmt/binding-linux-riscv64-musl");
|
|
341
341
|
const bindingPackageVersion = require("@oxfmt/binding-linux-riscv64-musl/package.json").version;
|
|
342
|
-
if (bindingPackageVersion !== "0.
|
|
342
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
343
343
|
return binding;
|
|
344
344
|
} catch (e) {
|
|
345
345
|
loadErrors.push(e);
|
|
@@ -353,7 +353,7 @@ function requireNative() {
|
|
|
353
353
|
try {
|
|
354
354
|
const binding = require("@oxfmt/binding-linux-riscv64-gnu");
|
|
355
355
|
const bindingPackageVersion = require("@oxfmt/binding-linux-riscv64-gnu/package.json").version;
|
|
356
|
-
if (bindingPackageVersion !== "0.
|
|
356
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
357
357
|
return binding;
|
|
358
358
|
} catch (e) {
|
|
359
359
|
loadErrors.push(e);
|
|
@@ -368,7 +368,7 @@ function requireNative() {
|
|
|
368
368
|
try {
|
|
369
369
|
const binding = require("@oxfmt/binding-linux-ppc64-gnu");
|
|
370
370
|
const bindingPackageVersion = require("@oxfmt/binding-linux-ppc64-gnu/package.json").version;
|
|
371
|
-
if (bindingPackageVersion !== "0.
|
|
371
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
372
372
|
return binding;
|
|
373
373
|
} catch (e) {
|
|
374
374
|
loadErrors.push(e);
|
|
@@ -382,7 +382,7 @@ function requireNative() {
|
|
|
382
382
|
try {
|
|
383
383
|
const binding = require("@oxfmt/binding-linux-s390x-gnu");
|
|
384
384
|
const bindingPackageVersion = require("@oxfmt/binding-linux-s390x-gnu/package.json").version;
|
|
385
|
-
if (bindingPackageVersion !== "0.
|
|
385
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
386
386
|
return binding;
|
|
387
387
|
} catch (e) {
|
|
388
388
|
loadErrors.push(e);
|
|
@@ -397,7 +397,7 @@ function requireNative() {
|
|
|
397
397
|
try {
|
|
398
398
|
const binding = require("@oxfmt/binding-openharmony-arm64");
|
|
399
399
|
const bindingPackageVersion = require("@oxfmt/binding-openharmony-arm64/package.json").version;
|
|
400
|
-
if (bindingPackageVersion !== "0.
|
|
400
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
401
401
|
return binding;
|
|
402
402
|
} catch (e) {
|
|
403
403
|
loadErrors.push(e);
|
|
@@ -411,7 +411,7 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require("@oxfmt/binding-openharmony-x64");
|
|
413
413
|
const bindingPackageVersion = require("@oxfmt/binding-openharmony-x64/package.json").version;
|
|
414
|
-
if (bindingPackageVersion !== "0.
|
|
414
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
415
415
|
return binding;
|
|
416
416
|
} catch (e) {
|
|
417
417
|
loadErrors.push(e);
|
|
@@ -425,7 +425,7 @@ function requireNative() {
|
|
|
425
425
|
try {
|
|
426
426
|
const binding = require("@oxfmt/binding-openharmony-arm");
|
|
427
427
|
const bindingPackageVersion = require("@oxfmt/binding-openharmony-arm/package.json").version;
|
|
428
|
-
if (bindingPackageVersion !== "0.
|
|
428
|
+
if (bindingPackageVersion !== "0.57.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw new Error(`Native binding package version mismatch, expected 0.57.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
429
429
|
return binding;
|
|
430
430
|
} catch (e) {
|
|
431
431
|
loadErrors.push(e);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createRequire } from "node:module";
|
|
2
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
2
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/chunk-DSjvVL_1.mjs
|
|
3
3
|
var __create = Object.create;
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/dist/cli-worker.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { i as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-
|
|
1
|
+
import { i as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-CvFX8LhR.js";
|
|
2
2
|
export { formatEmbeddedCode, formatEmbeddedDoc, formatFile, sortTailwindClasses };
|
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as toNullable, t as toFormatFileResult } from "./napi-callbacks-Sb-usWTs.js";
|
|
2
|
-
import { n as runCli } from "./bindings-
|
|
2
|
+
import { n as runCli } from "./bindings-Cj_GMsoO.js";
|
|
3
3
|
import Tinypool from "tinypool";
|
|
4
4
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
5
5
|
import { extname } from "node:path";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { o as __toESM } from "./rolldown-runtime-CE-6LUnI.js";
|
|
2
2
|
import { n as init_babel, parsers as ra, t as babel_exports } from "./babel-DLjwvkt5.js";
|
|
3
3
|
import index_exports, { t as init_prettier } from "./prettier-DKAx5A83.js";
|
|
4
|
-
import { a as __toESM$1, t as __commonJSMin } from "./chunk-DSjvVL_1-
|
|
5
|
-
import { a as sortClasses, c as cacheForDirs, d as expiringMap, f as loadIfExists, i as sortClassList, l as spliceChangesIntoString, n as error, o as warn, p as maybeResolve, r as getTailwindConfig$1, u as visit } from "./sorter-BZkvDMjt-
|
|
4
|
+
import { a as __toESM$1, t as __commonJSMin } from "./chunk-DSjvVL_1-DllBg9tc.js";
|
|
5
|
+
import { a as sortClasses, c as cacheForDirs, d as expiringMap, f as loadIfExists, i as sortClassList, l as spliceChangesIntoString, n as error, o as warn, p as maybeResolve, r as getTailwindConfig$1, u as visit } from "./sorter-BZkvDMjt-C8qUPUh2.js";
|
|
6
6
|
import { parsers as fn, t as init_angular } from "./angular-BbAuvH72.js";
|
|
7
7
|
import { n as postcss_exports, parsers as en, t as init_postcss } from "./postcss-CkhtwsAS.js";
|
|
8
8
|
import * as path from "node:path";
|
|
9
9
|
import { isAbsolute } from "path";
|
|
10
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
10
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/index.mjs
|
|
11
11
|
init_angular();
|
|
12
12
|
init_babel();
|
|
13
13
|
init_postcss();
|
|
@@ -1160,7 +1160,7 @@ const { parsers, printers } = createPlugin([
|
|
|
1160
1160
|
staticAttrs: ["class"],
|
|
1161
1161
|
load: [{
|
|
1162
1162
|
name: "prettier-plugin-svelte",
|
|
1163
|
-
importer: () => import("./plugin-
|
|
1163
|
+
importer: () => import("./plugin-BuVceHGR.js").then((m) => /* @__PURE__ */ __toESM(m.default, 1))
|
|
1164
1164
|
}],
|
|
1165
1165
|
parsers: { svelte: {} },
|
|
1166
1166
|
printers: { "svelte-ast": {} },
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-
|
|
1
|
+
import { i as sortTailwindClasses, n as formatEmbeddedDoc, r as formatFile, t as formatEmbeddedCode } from "./apis-CvFX8LhR.js";
|
|
2
2
|
import { n as toNullable, t as toFormatFileResult } from "./napi-callbacks-Sb-usWTs.js";
|
|
3
3
|
//#region src-js/index.ts
|
|
4
4
|
/**
|
|
@@ -14,7 +14,7 @@ let BINDINGS_CACHE = null;
|
|
|
14
14
|
async function format(fileName, sourceText, options) {
|
|
15
15
|
if (typeof fileName !== "string") throw new TypeError("`fileName` must be a string");
|
|
16
16
|
if (typeof sourceText !== "string") throw new TypeError("`sourceText` must be a string");
|
|
17
|
-
BINDINGS_CACHE ??= await import("./bindings-
|
|
17
|
+
BINDINGS_CACHE ??= await import("./bindings-Cj_GMsoO.js").then((n) => n.t);
|
|
18
18
|
return BINDINGS_CACHE.format(fileName, sourceText, options ?? {}, (options, code) => toFormatFileResult(formatFile({
|
|
19
19
|
options,
|
|
20
20
|
code
|
|
@@ -33,7 +33,7 @@ async function format(fileName, sourceText, options) {
|
|
|
33
33
|
* Format a JS/TS snippet for Prettier `textToDoc()` plugin flow.
|
|
34
34
|
*/
|
|
35
35
|
async function jsTextToDoc(sourceExt, sourceText, oxfmtPluginOptionsJson, parentContext) {
|
|
36
|
-
BINDINGS_CACHE ??= await import("./bindings-
|
|
36
|
+
BINDINGS_CACHE ??= await import("./bindings-Cj_GMsoO.js").then((n) => n.t);
|
|
37
37
|
return BINDINGS_CACHE.jsTextToDoc(sourceExt, sourceText, oxfmtPluginOptionsJson, parentContext, () => toFormatFileResult(Promise.reject("formatFile is unavailable for jsTextToDoc")), (options, code) => toNullable(formatEmbeddedCode({
|
|
38
38
|
options,
|
|
39
39
|
code
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as __toESM, i as __require, t as __commonJSMin } from "./chunk-DSjvVL_1-
|
|
1
|
+
import { a as __toESM, i as __require, t as __commonJSMin } from "./chunk-DSjvVL_1-DllBg9tc.js";
|
|
2
2
|
import { createRequire } from "node:module";
|
|
3
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
3
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/jiti-Bb1dT6Cw.mjs
|
|
4
4
|
var require_jiti = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
5
5
|
(() => {
|
|
6
6
|
var e = { "./node_modules/.pnpm/mlly@1.8.0/node_modules/mlly/dist lazy recursive": function(e) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as __toCommonJS, i as __require, t as __commonJSMin } from "./rolldown-runtime-CE-6LUnI.js";
|
|
2
2
|
import { n as init_babel, t as babel_exports } from "./babel-DLjwvkt5.js";
|
|
3
3
|
import { n as prettier_exports, t as init_prettier } from "./prettier-DKAx5A83.js";
|
|
4
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-svelte@4.1.1_prettier@3.8.4_svelte@5.56.
|
|
4
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-svelte@4.1.1_prettier@3.8.4_svelte@5.56.4_@typescript-eslint+types@8.62.0_/node_modules/prettier-plugin-svelte/plugin.js
|
|
5
5
|
var require_plugin = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
var prettierPluginBabel = (init_babel(), __toCommonJS(babel_exports));
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { i as __require, t as __commonJSMin } from "./chunk-DSjvVL_1-
|
|
1
|
+
import { i as __require, t as __commonJSMin } from "./chunk-DSjvVL_1-DllBg9tc.js";
|
|
2
2
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
3
3
|
import * as path from "node:path";
|
|
4
4
|
import { dirname, resolve } from "path";
|
|
5
5
|
import { readdirSync, statSync } from "fs";
|
|
6
6
|
import fs from "node:fs";
|
|
7
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
7
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/resolve-pWjAK-4f.mjs
|
|
8
8
|
function expiringMap(duration) {
|
|
9
9
|
let map = /* @__PURE__ */ new Map();
|
|
10
10
|
return {
|
|
@@ -4199,7 +4199,7 @@ function resolveCssFrom(base, id) {
|
|
|
4199
4199
|
return cssResolver.resolveSync({}, base, id) || id;
|
|
4200
4200
|
}
|
|
4201
4201
|
//#endregion
|
|
4202
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
4202
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/utils-D8dQkKEd.mjs
|
|
4203
4203
|
function isNodeLike(value) {
|
|
4204
4204
|
return typeof (value === null || value === void 0 ? void 0 : value.type) === "string";
|
|
4205
4205
|
}
|
|
@@ -4278,7 +4278,7 @@ function cacheForDirs(cache, inputDir, value, targetDir, makeKey = (dir) => dir)
|
|
|
4278
4278
|
}
|
|
4279
4279
|
}
|
|
4280
4280
|
//#endregion
|
|
4281
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
4281
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/sorter-BZkvDMjt.mjs
|
|
4282
4282
|
let seen = /* @__PURE__ */ new Set();
|
|
4283
4283
|
function warn(key, arg, ...args) {
|
|
4284
4284
|
if (seen.has(key)) return;
|
|
@@ -4377,14 +4377,14 @@ async function getTailwindConfig(options) {
|
|
|
4377
4377
|
if (!stylesheet && !(mod === null || mod === void 0 ? void 0 : mod.__unstable__loadDesignSystem)) jsConfig = jsConfig ?? findClosestJsConfig(inputDir);
|
|
4378
4378
|
if (jsConfig) {
|
|
4379
4379
|
if (!stylesheet) return pathToApiMap.remember(`${pkgDir}:${jsConfig}`, async () => {
|
|
4380
|
-
const { loadV3 } = await import("./v3-D-mr2VVh-
|
|
4380
|
+
const { loadV3 } = await import("./v3-D-mr2VVh-Ch8a-2Ce.js");
|
|
4381
4381
|
return loadV3(pkgDir, jsConfig);
|
|
4382
4382
|
});
|
|
4383
4383
|
error("explicit-stylesheet-and-config-together", base, `You have specified a Tailwind CSS stylesheet and a Tailwind CSS config at the same time. Use stylesheetPath unless you are using v3. Preferring the stylesheet.`);
|
|
4384
4384
|
}
|
|
4385
4385
|
if (mod && !mod.__unstable__loadDesignSystem) {
|
|
4386
4386
|
if (!stylesheet) return pathToApiMap.remember(`${pkgDir}:${jsConfig}`, async () => {
|
|
4387
|
-
const { loadV3 } = await import("./v3-D-mr2VVh-
|
|
4387
|
+
const { loadV3 } = await import("./v3-D-mr2VVh-Ch8a-2Ce.js");
|
|
4388
4388
|
return loadV3(pkgDir, jsConfig);
|
|
4389
4389
|
});
|
|
4390
4390
|
mod = null;
|
|
@@ -4392,7 +4392,7 @@ async function getTailwindConfig(options) {
|
|
|
4392
4392
|
}
|
|
4393
4393
|
if (mod && mod.__unstable__loadDesignSystem && pkgDir) stylesheet ?? (stylesheet = `${pkgDir}/theme.css`);
|
|
4394
4394
|
return pathToApiMap.remember(`${pkgDir}:${stylesheet}`, async () => {
|
|
4395
|
-
const { loadV4 } = await import("./v4-C-HWEQJm-
|
|
4395
|
+
const { loadV4 } = await import("./v4-C-HWEQJm-DheWK34Z.js");
|
|
4396
4396
|
return loadV4(mod, stylesheet);
|
|
4397
4397
|
});
|
|
4398
4398
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { r as getTailwindConfig, t as createSorter } from "./sorter-BZkvDMjt-
|
|
1
|
+
import { r as getTailwindConfig, t as createSorter } from "./sorter-BZkvDMjt-C8qUPUh2.js";
|
|
2
2
|
export { createSorter, getTailwindConfig };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { a as __toESM, i as __require, n as __esmMin, t as __commonJSMin } from "./chunk-DSjvVL_1-
|
|
2
|
-
import { s as bigSign } from "./sorter-BZkvDMjt-
|
|
3
|
-
import { t as createJiti } from "./jiti-Bb1dT6Cw-
|
|
1
|
+
import { a as __toESM, i as __require, n as __esmMin, t as __commonJSMin } from "./chunk-DSjvVL_1-DllBg9tc.js";
|
|
2
|
+
import { s as bigSign } from "./sorter-BZkvDMjt-C8qUPUh2.js";
|
|
3
|
+
import { t as createJiti } from "./jiti-Bb1dT6Cw-0c6As3U-.js";
|
|
4
4
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
5
5
|
import * as path from "node:path";
|
|
6
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
6
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/v3-D-mr2VVh.mjs
|
|
7
7
|
var getFilename, __filename;
|
|
8
8
|
var init_esm_shims = __esmMin((() => {
|
|
9
9
|
getFilename = () => fileURLToPath(import.meta.url);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { r as __exportAll } from "./chunk-DSjvVL_1-
|
|
2
|
-
import { h as resolveJsFrom, m as resolveCssFrom } from "./sorter-BZkvDMjt-
|
|
3
|
-
import { t as createJiti } from "./jiti-Bb1dT6Cw-
|
|
1
|
+
import { r as __exportAll } from "./chunk-DSjvVL_1-DllBg9tc.js";
|
|
2
|
+
import { h as resolveJsFrom, m as resolveCssFrom } from "./sorter-BZkvDMjt-C8qUPUh2.js";
|
|
3
|
+
import { t as createJiti } from "./jiti-Bb1dT6Cw-0c6As3U-.js";
|
|
4
4
|
import { pathToFileURL } from "node:url";
|
|
5
5
|
import * as path from "node:path";
|
|
6
6
|
import * as fs from "node:fs/promises";
|
|
7
|
-
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.
|
|
7
|
+
//#region ../../node_modules/.pnpm/prettier-plugin-tailwindcss@0.0.0-insiders.2b6f3c2_prettier-plugin-svelte@4.1.1_prettie_2cd42c04494cb69fdc0c372d6ff3f4da/node_modules/prettier-plugin-tailwindcss/dist/v4-C-HWEQJm.mjs
|
|
8
8
|
var l$1 = {
|
|
9
9
|
inherit: "inherit",
|
|
10
10
|
current: "currentcolor",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxfmt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.57.0",
|
|
4
4
|
"description": "Formatter for the JavaScript Oxidation Compiler",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"formatter",
|
|
@@ -86,24 +86,24 @@
|
|
|
86
86
|
},
|
|
87
87
|
"preferUnplugged": true,
|
|
88
88
|
"optionalDependencies": {
|
|
89
|
-
"@oxfmt/binding-darwin-arm64": "0.
|
|
90
|
-
"@oxfmt/binding-android-arm64": "0.
|
|
91
|
-
"@oxfmt/binding-win32-arm64-msvc": "0.
|
|
92
|
-
"@oxfmt/binding-linux-arm64-gnu": "0.
|
|
93
|
-
"@oxfmt/binding-linux-arm64-musl": "0.
|
|
94
|
-
"@oxfmt/binding-openharmony-arm64": "0.
|
|
95
|
-
"@oxfmt/binding-android-arm-eabi": "0.
|
|
96
|
-
"@oxfmt/binding-linux-arm-gnueabihf": "0.
|
|
97
|
-
"@oxfmt/binding-linux-arm-musleabihf": "0.
|
|
98
|
-
"@oxfmt/binding-win32-ia32-msvc": "0.
|
|
99
|
-
"@oxfmt/binding-linux-ppc64-gnu": "0.
|
|
100
|
-
"@oxfmt/binding-linux-riscv64-gnu": "0.
|
|
101
|
-
"@oxfmt/binding-linux-riscv64-musl": "0.
|
|
102
|
-
"@oxfmt/binding-linux-s390x-gnu": "0.
|
|
103
|
-
"@oxfmt/binding-darwin-x64": "0.
|
|
104
|
-
"@oxfmt/binding-win32-x64-msvc": "0.
|
|
105
|
-
"@oxfmt/binding-freebsd-x64": "0.
|
|
106
|
-
"@oxfmt/binding-linux-x64-gnu": "0.
|
|
107
|
-
"@oxfmt/binding-linux-x64-musl": "0.
|
|
89
|
+
"@oxfmt/binding-darwin-arm64": "0.57.0",
|
|
90
|
+
"@oxfmt/binding-android-arm64": "0.57.0",
|
|
91
|
+
"@oxfmt/binding-win32-arm64-msvc": "0.57.0",
|
|
92
|
+
"@oxfmt/binding-linux-arm64-gnu": "0.57.0",
|
|
93
|
+
"@oxfmt/binding-linux-arm64-musl": "0.57.0",
|
|
94
|
+
"@oxfmt/binding-openharmony-arm64": "0.57.0",
|
|
95
|
+
"@oxfmt/binding-android-arm-eabi": "0.57.0",
|
|
96
|
+
"@oxfmt/binding-linux-arm-gnueabihf": "0.57.0",
|
|
97
|
+
"@oxfmt/binding-linux-arm-musleabihf": "0.57.0",
|
|
98
|
+
"@oxfmt/binding-win32-ia32-msvc": "0.57.0",
|
|
99
|
+
"@oxfmt/binding-linux-ppc64-gnu": "0.57.0",
|
|
100
|
+
"@oxfmt/binding-linux-riscv64-gnu": "0.57.0",
|
|
101
|
+
"@oxfmt/binding-linux-riscv64-musl": "0.57.0",
|
|
102
|
+
"@oxfmt/binding-linux-s390x-gnu": "0.57.0",
|
|
103
|
+
"@oxfmt/binding-darwin-x64": "0.57.0",
|
|
104
|
+
"@oxfmt/binding-win32-x64-msvc": "0.57.0",
|
|
105
|
+
"@oxfmt/binding-freebsd-x64": "0.57.0",
|
|
106
|
+
"@oxfmt/binding-linux-x64-gnu": "0.57.0",
|
|
107
|
+
"@oxfmt/binding-linux-x64-musl": "0.57.0"
|
|
108
108
|
}
|
|
109
109
|
}
|