@cocreate/crud-server 1.35.3 → 1.36.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,3 +1,16 @@
1
+ # [1.36.0](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.35.3...v1.36.0) (2024-11-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * crud-event ([2629944](https://github.com/CoCreate-app/CoCreate-crud-server/commit/262994454a13f258e63c42f71396fee844a1d5e6))
7
+ * prettier.config options ([090d1d6](https://github.com/CoCreate-app/CoCreate-crud-server/commit/090d1d61ee0c24c9c1dedc7454fe57a486abb904))
8
+
9
+
10
+ ### Features
11
+
12
+ * add prettier.config.js and format files ([cbf1805](https://github.com/CoCreate-app/CoCreate-crud-server/commit/cbf18057aee90a6c7b75b7ccec70eb12cc3e71d9))
13
+
1
14
  ## [1.35.3](https://github.com/CoCreate-app/CoCreate-crud-server/compare/v1.35.2...v1.35.3) (2024-09-21)
2
15
 
3
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/crud-server",
3
- "version": "1.35.3",
3
+ "version": "1.36.0",
4
4
  "description": "CoCreate-crud-server",
5
5
  "keywords": [
6
6
  "cocreate-crud",
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ tabWidth: 4,
3
+ semi: true,
4
+ trailingComma: "none",
5
+ bracketSameLine: true,
6
+ useTabs: true,
7
+ overrides: [
8
+ {
9
+ files: ["*.json", "*.yml", "*.yaml"],
10
+ options: {
11
+ tabWidth: 2,
12
+ useTabs: false
13
+ },
14
+ }
15
+ ],
16
+ };