@commencis/prettier-config 1.1.1 → 2.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,5 +1,11 @@
1
1
  # @commencis/prettier-config
2
2
 
3
+ ## 2.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [BREAKING]: feat: `@commencis/prettier-config` now has prettier >= v3.5 in peer dependencies ([#233](https://github.com/Commencis/js-toolkit/pull/233))
8
+
3
9
  ## 1.1.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -18,11 +18,11 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
 
20
20
  // src/index.ts
21
- var src_exports = {};
22
- __export(src_exports, {
23
- default: () => src_default
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ default: () => index_default
24
24
  });
25
- module.exports = __toCommonJS(src_exports);
25
+ module.exports = __toCommonJS(index_exports);
26
26
  var prettierConfig = {
27
27
  printWidth: 80,
28
28
  tabWidth: 2,
@@ -30,4 +30,4 @@ var prettierConfig = {
30
30
  singleQuote: true,
31
31
  trailingComma: "es5"
32
32
  };
33
- var src_default = prettierConfig;
33
+ var index_default = prettierConfig;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { Options } from 'prettier';
1
+ import { Config } from 'prettier';
2
2
 
3
- declare const prettierConfig: Options;
3
+ declare const prettierConfig: Config;
4
4
 
5
5
  export { prettierConfig as default };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { Options } from 'prettier';
1
+ import { Config } from 'prettier';
2
2
 
3
- declare const prettierConfig: Options;
3
+ declare const prettierConfig: Config;
4
4
 
5
5
  export { prettierConfig as default };
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ var prettierConfig = {
6
6
  singleQuote: true,
7
7
  trailingComma: "es5"
8
8
  };
9
- var src_default = prettierConfig;
9
+ var index_default = prettierConfig;
10
10
  export {
11
- src_default as default
11
+ index_default as default
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commencis/prettier-config",
3
- "version": "1.1.1",
3
+ "version": "2.0.0",
4
4
  "description": "Commencis Prettier config",
5
5
  "author": "Commencis WEB Team",
6
6
  "license": "Apache-2.0",
@@ -29,10 +29,13 @@
29
29
  "require": "./dist/index.cjs"
30
30
  },
31
31
  "devDependencies": {
32
- "prettier": "3.4.2",
33
- "tsup": "8.3.5",
34
- "typescript": "5.7.2",
35
- "@commencis/ts-config": "0.0.2"
32
+ "@commencis/ts-config": "0.0.2",
33
+ "prettier": "3.5.0",
34
+ "tsup": "8.3.6",
35
+ "typescript": "5.7.3"
36
+ },
37
+ "peerDependencies": {
38
+ "prettier": ">= 3.5"
36
39
  },
37
40
  "scripts": {
38
41
  "dev": "tsup --watch",