drizzle-orm-test 0.2.5 → 0.2.7

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 +2 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -388,6 +388,8 @@ import { getConnections, PgTestClient } from 'drizzle-orm-test';
388
388
  // Now you can also use Drizzle ORM with full RLS support
389
389
  ```
390
390
 
391
+ ---
392
+
391
393
  ## Education and Tutorials
392
394
 
393
395
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
@@ -462,4 +464,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
462
464
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
463
465
 
464
466
  No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
465
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-orm-test",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "Drop-in replacement for pgsql-test that enables Drizzle ORM to work seamlessly with context management and RLS testing",
6
6
  "main": "index.js",
@@ -36,25 +36,26 @@
36
36
  "mocha"
37
37
  ],
38
38
  "scripts": {
39
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
40
- "clean": "rimraf dist/**",
39
+ "clean": "makage clean",
40
+ "copy": "makage assets",
41
41
  "prepack": "npm run build",
42
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
43
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
42
+ "build": "makage build",
43
+ "build:dev": "makage build --dev",
44
44
  "lint": "eslint . --fix",
45
45
  "test": "jest",
46
46
  "test:watch": "jest --watch"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/pg": "^8.15.2",
50
- "drizzle-orm": "^0.44.7"
50
+ "drizzle-orm": "^0.44.7",
51
+ "makage": "^0.1.6"
51
52
  },
52
53
  "dependencies": {
53
- "pgsql-test": "^2.14.7"
54
+ "pgsql-test": "^2.14.9"
54
55
  },
55
56
  "peerDependencies": {
56
57
  "drizzle-orm": ">=0.30.0",
57
58
  "pg": "^8.16.0"
58
59
  },
59
- "gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
60
+ "gitHead": "1da5f98bd18b47382b652e104cdc4db1b9ee79db"
60
61
  }