@sister.software/oxfmt-config 9.3.0 → 10.0.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/README.md CHANGED
@@ -11,7 +11,10 @@ Prettier plugins: import organization, JSDoc formatting, and `package.json` key
11
11
  yarn add -D @sister.software/oxfmt-config oxfmt
12
12
  ```
13
13
 
14
- `oxfmt` is a peer dependency.
14
+ `oxfmt` is a peer dependency, ranged `>=0.60.0 <1`. oxfmt has not cut a 1.0, so its minors are the
15
+ de-facto majors; the range tracks that rather than pinning an exact version. Note that a caret would
16
+ not work here — `^0.60.0` pins the minor on a `0.x` version, which is how the previous exact pin
17
+ went unnoticed.
15
18
 
16
19
  ## Usage
17
20
 
package/out/index.d.ts CHANGED
@@ -5,9 +5,7 @@
5
5
  * @file oxfmt configuration for Sister Software projects.
6
6
  */
7
7
  /** An oxfmt configuration object, as consumed by `oxfmt.config.ts` / `.oxfmtrc.json`. */
8
- export interface OxfmtConfig {
9
- [key: string]: unknown;
10
- }
8
+ export type OxfmtConfig = Record<string, unknown>;
11
9
  /**
12
10
  * Sister Software's oxfmt configuration.
13
11
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,yFAAyF;AACzF,MAAM,WAAW,WAAW;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACtB;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,yBAAyB,EAAE,WAoBvC,CAAA;AAED,eAAe,yBAAyB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,yFAAyF;AACzF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;AAEjD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,yBAAyB,EAAE,WAoBvC,CAAA;AAED,eAAe,yBAAyB,CAAA"}
package/out/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAOH;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAgB;IACrD,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,CAAC;IACX,UAAU,EAAE,GAAG;IACf,IAAI,EAAE,KAAK;IACX,aAAa,EAAE,KAAK;IACpB,cAAc,EAAE,IAAI;IACpB,2FAA2F;IAC3F,oGAAoG;IACpG,wEAAwE;IACxE,KAAK,EAAE;QACN,mBAAmB,EAAE,MAAM;QAC3B,mDAAmD;QACnD,wBAAwB,EAAE,IAAI;KAC9B;IACD,oEAAoE;IACpE,eAAe,EAAE,IAAI;IACrB,6FAA6F;IAC7F,kEAAkE;IAClE,WAAW,EAAE,IAAI;CACjB,CAAA;AAED,eAAe,yBAAyB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAgB;IACrD,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,CAAC;IACX,UAAU,EAAE,GAAG;IACf,IAAI,EAAE,KAAK;IACX,aAAa,EAAE,KAAK;IACpB,cAAc,EAAE,IAAI;IACpB,2FAA2F;IAC3F,oGAAoG;IACpG,wEAAwE;IACxE,KAAK,EAAE;QACN,mBAAmB,EAAE,MAAM;QAC3B,mDAAmD;QACnD,wBAAwB,EAAE,IAAI;KAC9B;IACD,oEAAoE;IACpE,eAAe,EAAE,IAAI;IACrB,6FAA6F;IAC7F,kEAAkE;IAClE,WAAW,EAAE,IAAI;CACjB,CAAA;AAED,eAAe,yBAAyB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sister.software/oxfmt-config",
3
- "version": "9.3.0",
3
+ "version": "10.0.0",
4
4
  "description": "Sister Software's oxfmt config",
5
5
  "license": "AGPL-3.0",
6
6
  "author": "teffen@sister.software",
@@ -30,7 +30,7 @@
30
30
  "typescript": "^6.0.3"
31
31
  },
32
32
  "peerDependencies": {
33
- "oxfmt": "0.56.0"
33
+ "oxfmt": ">=0.60.0 <1"
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=24.0"
package/src/index.ts CHANGED
@@ -6,9 +6,7 @@
6
6
  */
7
7
 
8
8
  /** An oxfmt configuration object, as consumed by `oxfmt.config.ts` / `.oxfmtrc.json`. */
9
- export interface OxfmtConfig {
10
- [key: string]: unknown
11
- }
9
+ export type OxfmtConfig = Record<string, unknown>
12
10
 
13
11
  /**
14
12
  * Sister Software's oxfmt configuration.