@bitblit/ratchet-rdbms 6.1.197-alpha → 6.1.198-alpha

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.
Files changed (1) hide show
  1. package/package.json +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-rdbms",
3
- "version": "6.1.197-alpha",
3
+ "version": "6.1.198-alpha",
4
4
  "description": "Ratchet tooling for working with relational databases",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "license": "Apache-2.0",
50
50
  "dependencies": {
51
- "@bitblit/ratchet-common": "6.1.197-alpha"
51
+ "@bitblit/ratchet-common": "6.1.198-alpha"
52
52
  },
53
53
  "optionalDependencies": {
54
54
  "@aws-sdk/client-rds-data": "3.996.0",
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "peerDependencies": {
64
64
  "@aws-sdk/client-rds-data": "^3.996.0",
65
- "@bitblit/ratchet-common": "6.1.197-alpha",
65
+ "@bitblit/ratchet-common": "6.1.198-alpha",
66
66
  "better-sqlite3": "^12.6.2",
67
67
  "get-port": "^7.1.0",
68
68
  "mysql2": "^3.18.0",
@@ -103,6 +103,10 @@
103
103
  "test": "vitest run",
104
104
  "test-coverage": "vitest run --coverage",
105
105
  "custom-publish": "pnpm publish --access public --provenance --tag $GITHUB_REF_NAME --no-git-checks",
106
- "clean": "shx rm -Rf lib"
106
+ "clean": "shx rm -Rf lib",
107
+ "pretty": "prettier src --write",
108
+ "lint": "eslint -c ../../eslint.config.mjs src/**/*.ts",
109
+ "lint-fix": "pnpm pretty && eslint --fix -c ../../eslint.config.mjs src/**/*.ts",
110
+ "generate-docs": "typedoc"
107
111
  }
108
112
  }