bigal 13.0.0-beta7 → 13.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/.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
@@ -3,7 +3,8 @@
3
3
  ## 13.0.0 - 2024-07-02
4
4
 
5
5
  - Publish as CJS and ESM
6
- - Update npms
6
+ - Upgrade eslint to flat config
7
+ - Update npms and dependencies
7
8
 
8
9
  ### BREAKING CHANGES
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigal",
3
- "version": "13.0.0-beta7",
3
+ "version": "13.0.0",
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.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@faker-js/faker": "^8.4.1",