bigal 13.0.0-beta7 → 13.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/.prettierrc.cjs CHANGED
@@ -13,9 +13,9 @@ module.exports = {
13
13
 
14
14
  overrides: [
15
15
  {
16
- files: '*.js',
16
+ files: ['*.js', '*.cjs', '*.mjs'],
17
17
  options: {
18
- parser: 'babel',
18
+ parser: 'espree',
19
19
  },
20
20
  },
21
21
  {
package/CHANGELOG.md CHANGED
@@ -1,9 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.0.1 - 2024-07-02
4
+
5
+ - Update postgres-pool npm
6
+
3
7
  ## 13.0.0 - 2024-07-02
4
8
 
5
9
  - Publish as CJS and ESM
6
- - Update npms
10
+ - Upgrade eslint to flat config
11
+ - Update npms and dependencies
7
12
 
8
13
  ### BREAKING CHANGES
9
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigal",
3
- "version": "13.0.0-beta7",
3
+ "version": "13.0.1",
4
4
  "description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -36,7 +36,7 @@
36
36
  "@types/pg": "^8.11.6",
37
37
  "lodash": "^4.17.21",
38
38
  "pg": "^8.12.0",
39
- "postgres-pool": "^9.0.0-beta2"
39
+ "postgres-pool": "^9.0.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@faker-js/faker": "^8.4.1",