@madgex/prettier-config-madgex 2.0.0 → 2.0.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 CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.1](https://github.com/wiley/madgex-eslint-config-madgex/compare/@madgex/prettier-config-madgex@2.0.0...@madgex/prettier-config-madgex@2.0.1) (2026-02-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - package dependancies lock major ([3a78107](https://github.com/wiley/madgex-eslint-config-madgex/commit/3a78107b7628713a4a1efac55e2f57a602e4445a))
11
+
6
12
  # [2.0.0](https://github.com/wiley/madgex-eslint-config-madgex/compare/@madgex/prettier-config-madgex@1.2.1...@madgex/prettier-config-madgex@2.0.0) (2024-04-18)
7
13
 
8
14
  -fix: trailingComma:"all"
package/README.md CHANGED
@@ -13,9 +13,10 @@ npm install @madgex/prettier-config-madgex -save-dev
13
13
  Add in your `package.json`:
14
14
 
15
15
  ```js
16
- // .prettierrc.js
17
- import configMadgex from '@madgex/prettier-config-madgex';
18
- export default {
16
+ // .prettierrc.cjs
17
+ const configMadgex = require('@madgex/prettier-config-madgex');
18
+
19
+ module.exports = {
19
20
  ...configMadgex,
20
21
  // if absolutely necessary, add overrides
21
22
  // semi: false,
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@madgex/prettier-config-madgex",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Prettier rules related to Madgex projects",
5
5
  "type": "commonjs",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
- "build": "echo 'build is not required' || exit 0",
9
- "test": "echo \"Error: no test specified\" && exit 1"
8
+ "build": "echo 'build is not required' || exit 0"
10
9
  },
11
10
  "files": [
12
11
  "README.md",
@@ -17,7 +16,7 @@
17
16
  "author": "James Wragg <james.wragg@madgex.com> (https://madgex.com/)",
18
17
  "license": "MIT",
19
18
  "peerDependencies": {
20
- "prettier": ">=3"
19
+ "prettier": "^3.8.1"
21
20
  },
22
- "gitHead": "2bbdb8be7d056e210ce28579c116e05d2f9362c8"
21
+ "gitHead": "0a2d2c26e7303483af175a958488648de0cd3696"
23
22
  }