@sister.software/oxfmt-config 10.0.0 → 11.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/out/index.d.ts +3 -1
- package/out/index.d.ts.map +1 -1
- package/out/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +3 -1
package/out/index.d.ts
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
* @author Teffen Ellis, et al.
|
|
5
5
|
* @file oxfmt configuration for Sister Software projects.
|
|
6
6
|
*/
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* An oxfmt configuration object, as consumed by `oxfmt.config.ts` / `.oxfmtrc.json`.
|
|
9
|
+
*/
|
|
8
10
|
export type OxfmtConfig = Record<string, unknown>;
|
|
9
11
|
/**
|
|
10
12
|
* Sister Software's oxfmt configuration.
|
package/out/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;GAEG;AACH,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;
|
|
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"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
* @file oxfmt configuration for Sister Software projects.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
/**
|
|
8
|
+
/**
|
|
9
|
+
* An oxfmt configuration object, as consumed by `oxfmt.config.ts` / `.oxfmtrc.json`.
|
|
10
|
+
*/
|
|
9
11
|
export type OxfmtConfig = Record<string, unknown>
|
|
10
12
|
|
|
11
13
|
/**
|