prettier 3.2.0 → 3.2.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/index.cjs CHANGED
@@ -585,7 +585,7 @@ var init_public = __esm({
585
585
  // src/main/version.evaluate.cjs
586
586
  var require_version_evaluate = __commonJS({
587
587
  "src/main/version.evaluate.cjs"(exports2, module2) {
588
- module2.exports = "3.2.0";
588
+ module2.exports = "3.2.1";
589
589
  }
590
590
  });
591
591
 
package/index.d.ts CHANGED
@@ -39,9 +39,8 @@ type ArrayProperties<T> = {
39
39
  // A union of the properties of the given array T that can be used to index it.
40
40
  // If the array is a tuple, then that's going to be the explicit indices of the
41
41
  // array, otherwise it's going to just be number.
42
- type IndexProperties<T extends { length: number }> = IsTuple<T> extends true
43
- ? Exclude<Partial<T>["length"], T["length"]>
44
- : number;
42
+ type IndexProperties<T extends { length: number }> =
43
+ IsTuple<T> extends true ? Exclude<Partial<T>["length"], T["length"]> : number;
45
44
 
46
45
  // Effectively performing T[P], except that it's telling TypeScript that it's
47
46
  // safe to do this for tuples, arrays, or objects.
package/index.mjs CHANGED
@@ -23962,7 +23962,7 @@ var object_omit_default = omit;
23962
23962
  import * as doc from "./doc.mjs";
23963
23963
 
23964
23964
  // src/main/version.evaluate.cjs
23965
- var version_evaluate_default = "3.2.0";
23965
+ var version_evaluate_default = "3.2.1";
23966
23966
 
23967
23967
  // src/utils/public.js
23968
23968
  var public_exports = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prettier",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Prettier is an opinionated code formatter",
5
5
  "bin": "./bin/prettier.cjs",
6
6
  "repository": "prettier/prettier",