@will-stone/prettier-config 9.0.4 → 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/CHANGELOG.md CHANGED
@@ -1,10 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## [9.0.4](https://github.com/will-stone/prettier-config/compare/v9.0.3...v9.0.4) (2025-04-19)
3
+ ## [10.0.0](https://github.com/will-stone/prettier-config/compare/v9.0.5...v10.0.0) (2025-04-19)
4
+
5
+ ### Major changes
6
+
7
+ * Convert package to ESM ([f296e88](https://github.com/will-stone/prettier-config/commit/f296e883d43ea2b331a29f7109dde45d27fad993))
8
+
9
+ ## [9.0.5](https://github.com/will-stone/prettier-config/compare/v9.0.3...v9.0.5) (2025-04-19)
4
10
 
5
11
  ### Patches
6
12
 
7
- * Auto release ([17e2e50](https://github.com/will-stone/prettier-config/commit/17e2e5076442310d61029bae105f1213d9c370f5))
13
+ - Dummy release
14
+ ([47e98b1](https://github.com/will-stone/prettier-config/commit/47e98b1cc1c262d9bedf20d87d5e214f12bf131b))
15
+ - Auto release
16
+ ([17e2e50](https://github.com/will-stone/prettier-config/commit/17e2e5076442310d61029bae105f1213d9c370f5))
8
17
 
9
18
  ## [9.0.3](https://github.com/will-stone/prettier-config/compare/v9.0.2...v9.0.3) (2025-04-19)
10
19
 
package/index.js CHANGED
@@ -1,7 +1,5 @@
1
- /* eslint-disable unicorn/prefer-module */
2
-
3
- module.exports = {
4
- plugins: [require.resolve('prettier-plugin-packagejson')],
1
+ export default {
2
+ plugins: [import.meta.resolve('prettier-plugin-packagejson')],
5
3
  proseWrap: 'always',
6
4
  semi: false,
7
5
  singleQuote: true,
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@will-stone/prettier-config",
3
- "version": "9.0.4",
3
+ "version": "10.0.0",
4
4
  "description": "My personal Prettier config",
5
5
  "repository": {
6
6
  "url": "https://github.com/will-stone/prettier-config"
7
7
  },
8
8
  "license": "MIT",
9
9
  "author": "Will Stone",
10
- "main": "./index.js",
10
+ "type": "module",
11
+ "exports": "./index.js",
11
12
  "scripts": {
12
13
  "lint": "eslint .",
13
14
  "prepare": "husky",
File without changes
File without changes