@travetto/model-mysql 3.0.0-rc.25 → 3.0.0-rc.26

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -6,6 +6,10 @@
6
6
  **Install: @travetto/model-mysql**
7
7
  ```bash
8
8
  npm install @travetto/model-mysql
9
+
10
+ # or
11
+
12
+ yarn add @travetto/model-mysql
9
13
  ```
10
14
 
11
15
  This module provides a [MySQL](https://www.mysql.com/)-based implementation for the [Data Modeling Support](https://github.com/travetto/travetto/tree/main/module/model#readme "Datastore abstraction for core operations.") module. This source allows the [Data Modeling Support](https://github.com/travetto/travetto/tree/main/module/model#readme "Datastore abstraction for core operations.") module to read, write and query against [SQL](https://en.wikipedia.org/wiki/SQL) databases. In development mode, the [SQLModelService](https://github.com/travetto/travetto/tree/main/module/model-sql/src/service.ts#L38) will also modify the database schema in real time to minimize impact to development.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-mysql",
3
- "version": "3.0.0-rc.25",
3
+ "version": "3.0.0-rc.26",
4
4
  "description": "MySQL backing for the travetto model module, with real-time modeling support for SQL schemas.",
5
5
  "keywords": [
6
6
  "sql",
@@ -27,16 +27,16 @@
27
27
  "directory": "module/model-mysql"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/config": "^3.0.0-rc.24",
31
- "@travetto/context": "^3.0.0-rc.23",
32
- "@travetto/model": "^3.0.0-rc.24",
33
- "@travetto/model-query": "^3.0.0-rc.25",
34
- "@travetto/model-sql": "^3.0.0-rc.25",
30
+ "@travetto/config": "^3.0.0-rc.25",
31
+ "@travetto/context": "^3.0.0-rc.24",
32
+ "@travetto/model": "^3.0.0-rc.25",
33
+ "@travetto/model-query": "^3.0.0-rc.26",
34
+ "@travetto/model-sql": "^3.0.0-rc.26",
35
35
  "@types/mysql": "^2.15.21",
36
36
  "mysql2": "^3.1.2"
37
37
  },
38
38
  "peerDependencies": {
39
- "@travetto/command": "^3.0.0-rc.20"
39
+ "@travetto/command": "^3.0.0-rc.21"
40
40
  },
41
41
  "peerDependenciesMeta": {
42
42
  "@travetto/command": {