@nymphjs/driver-sqlite3 1.0.0-alpha.3 → 1.0.0-alpha.4

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
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.4](https://github.com/sciactive/nymphjs/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2021-09-27)
7
+
8
+ **Note:** Version bump only for package @nymphjs/driver-sqlite3
9
+
6
10
  # [1.0.0-alpha.3](https://github.com/sciactive/nymphjs/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2021-09-22)
7
11
 
8
12
  ### Features
package/README.md CHANGED
@@ -12,7 +12,7 @@ npm install --save @nymphjs/driver-sqlite3
12
12
 
13
13
  ## Usage
14
14
 
15
- Supply an instance of this driver with its configuration to Nymph's init function.
15
+ Supply an instance of this driver with its configuration to Nymph's constructor.
16
16
 
17
17
  ```ts
18
18
  import { Nymph } from '@nymphjs/nymph';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nymphjs/driver-sqlite3",
3
- "version": "1.0.0-alpha.3",
3
+ "version": "1.0.0-alpha.4",
4
4
  "description": "NymphJS - SQLite3 DB Driver",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "license": "Apache-2.0",
33
33
  "dependencies": {
34
- "@nymphjs/nymph": "^1.0.0-alpha.3",
34
+ "@nymphjs/nymph": "^1.0.0-alpha.4",
35
35
  "better-sqlite3": "^7.4.3",
36
36
  "nanoid": "^3.1.25"
37
37
  },
@@ -43,5 +43,5 @@
43
43
  "ts-jest": "^27.0.5",
44
44
  "typescript": "^4.3.5"
45
45
  },
46
- "gitHead": "95789b3654ac1dad449354e3a52f16c489ebdb70"
46
+ "gitHead": "6d0d344b357ab4080d31d84221456ab08d748194"
47
47
  }