@joshdb/prettier-config 1.1.0-pr-148.dc48f31.0 → 2.0.0-next.e492223.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 +4 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -33,8 +33,10 @@ Add the Prettier config to your `package.json`:
|
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Or to `prettierrc.
|
|
36
|
+
Or to `prettierrc.mjs`:
|
|
37
37
|
|
|
38
38
|
```js
|
|
39
|
-
|
|
39
|
+
import JoshPrettierConfig from '@joshdb/prettier-config';
|
|
40
|
+
|
|
41
|
+
export default JoshPrettierConfig;
|
|
40
42
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joshdb/prettier-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-next.e492223.0",
|
|
4
4
|
"description": "Standard Prettier config for the Josh Project",
|
|
5
5
|
"author": "Évelyne Lachance <eslachance@gmail.com> (https://evie.codes/)",
|
|
6
6
|
"contributors": [
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"check-update": "cliff-jumper --dry-run"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"prettier": "^2.
|
|
21
|
+
"prettier": "^3.2.5"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@favware/cliff-jumper": "^
|
|
25
|
-
"typedoc": "^0.
|
|
26
|
-
"typedoc-json-parser": "^
|
|
24
|
+
"@favware/cliff-jumper": "^3.0.1",
|
|
25
|
+
"typedoc": "^0.25.12",
|
|
26
|
+
"typedoc-json-parser": "^9.0.1"
|
|
27
27
|
},
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
".prettierrc.json"
|
|
34
34
|
],
|
|
35
35
|
"engines": {
|
|
36
|
-
"node": ">=
|
|
36
|
+
"node": ">=20",
|
|
37
37
|
"npm": ">=7"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|