introspectron 2.13.8 → 2.13.9

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 +1 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -60,6 +60,7 @@ output
60
60
  createdb testdb
61
61
  psql testdb -f ./seed.sql
62
62
 
63
+ ---
63
64
 
64
65
  ## Education and Tutorials
65
66
 
@@ -135,4 +136,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
135
136
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
136
137
 
137
138
  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.
138
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "introspectron",
3
- "version": "2.13.8",
3
+ "version": "2.13.9",
4
4
  "description": "introspect your Postgres database and generate an SDK",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "main": "index.js",
@@ -20,11 +20,10 @@
20
20
  "url": "https://github.com/launchql/launchql/issues"
21
21
  },
22
22
  "scripts": {
23
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
23
+ "clean": "makage clean",
25
24
  "prepack": "npm run build",
26
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
25
+ "build": "makage build",
26
+ "build:dev": "makage build --dev",
28
27
  "lint": "eslint . --fix",
29
28
  "test": "jest",
30
29
  "test:watch": "jest --watch"
@@ -32,8 +31,9 @@
32
31
  "devDependencies": {
33
32
  "@jest/test-sequencer": "^30.2.0",
34
33
  "@types/pg": "^8.15.2",
35
- "launchql-test": "^2.8.5",
36
- "pgsql-test": "^2.14.7"
34
+ "launchql-test": "^2.8.6",
35
+ "makage": "^0.1.6",
36
+ "pgsql-test": "^2.14.8"
37
37
  },
38
38
  "dependencies": {
39
39
  "graphql": "15.10.1",
@@ -48,5 +48,5 @@
48
48
  "graphile",
49
49
  "launchql"
50
50
  ],
51
- "gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
51
+ "gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
52
52
  }