@homestuck/prettier-config 1.2.0 → 1.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/CHANGELOG.md +7 -0
- package/{index.mjs → index.js} +1 -5
- package/package.json +3 -3
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.1](https://github.com/homestuck/configs/compare/prettier-config@v1.2.0...prettier-config@v1.2.1) (2025-12-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **prettier:** Change JSDoc type declaration for config, change export file extension from .mjs to .js ([#21](https://github.com/homestuck/configs/issues/21)) ([13f0845](https://github.com/homestuck/configs/commit/13f084580ddb8985a9c30bbd832615d28fbc6438))
|
|
9
|
+
|
|
3
10
|
## [1.2.0](https://github.com/homestuck/configs/compare/prettier-config@v1.1.0...prettier-config@v1.2.0) (2025-12-15)
|
|
4
11
|
|
|
5
12
|
|
package/{index.mjs → index.js}
RENAMED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
/** @
|
|
2
|
-
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig */
|
|
3
|
-
/** @typedef {import("@prettier/plugin-xml")} XMLConfig */
|
|
4
|
-
|
|
5
|
-
/** @type { PrettierConfig | SortImportsConfig | XMLConfig } */
|
|
1
|
+
/** @type {import("prettier").Config} */
|
|
6
2
|
const config = {
|
|
7
3
|
arrowParens: 'always',
|
|
8
4
|
bracketSameLine: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homestuck/prettier-config",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Baseline Prettier config used and maintained by Homestuck Inc., et al.",
|
|
6
6
|
"repository": {
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"author": "Homestuck <support@homestuck.com> (https://homestuck.com)",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"exports": {
|
|
15
|
-
".": "./index.
|
|
15
|
+
".": "./index.js"
|
|
16
16
|
},
|
|
17
|
-
"main": "./index.
|
|
17
|
+
"main": "./index.js",
|
|
18
18
|
"prettier": "@homestuck/prettier-config",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
|