pgpm 0.2.12 → 0.2.14

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 -0
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -338,6 +338,8 @@ Most commands support these global options:
338
338
  - `--version, -v` - Show version information
339
339
  - `--cwd <dir>` - Set working directory
340
340
 
341
+ ---
342
+
341
343
  ## Education and Tutorials
342
344
 
343
345
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgpm",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL Package Manager - Database migration and package management CLI",
6
6
  "main": "index.js",
@@ -23,11 +23,10 @@
23
23
  "url": "https://github.com/launchql/launchql/issues"
24
24
  },
25
25
  "scripts": {
26
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
27
- "clean": "rimraf dist/**",
26
+ "clean": "makage clean",
28
27
  "prepack": "npm run build",
29
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
30
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
28
+ "build": "makage build",
29
+ "build:dev": "makage build --dev",
31
30
  "dev": "ts-node ./src/index.ts",
32
31
  "lint": "eslint . --fix",
33
32
  "test": "jest",
@@ -40,20 +39,21 @@
40
39
  "@types/pg": "^8.15.2",
41
40
  "@types/shelljs": "^0.8.16",
42
41
  "glob": "^13.0.0",
42
+ "makage": "^0.1.6",
43
43
  "pg": "^8.16.0",
44
44
  "ts-node": "^10.9.2"
45
45
  },
46
46
  "dependencies": {
47
- "@launchql/core": "^2.17.1",
48
- "@launchql/env": "^2.5.4",
49
- "@launchql/logger": "^1.1.9",
50
- "@launchql/templatizer": "^2.5.4",
51
- "@launchql/types": "^2.8.4",
47
+ "@launchql/core": "^2.17.3",
48
+ "@launchql/env": "^2.5.5",
49
+ "@launchql/logger": "^1.1.10",
50
+ "@launchql/templatizer": "^2.5.5",
51
+ "@launchql/types": "^2.8.5",
52
52
  "inquirerer": "^2.0.8",
53
53
  "js-yaml": "^4.1.0",
54
54
  "minimist": "^1.2.8",
55
- "pg-cache": "^1.4.5",
56
- "pg-env": "^1.1.5",
55
+ "pg-cache": "^1.4.6",
56
+ "pg-env": "^1.1.6",
57
57
  "shelljs": "^0.10.0",
58
58
  "yanse": "^0.1.1"
59
59
  },
@@ -69,5 +69,5 @@
69
69
  "pg",
70
70
  "pgsql"
71
71
  ],
72
- "gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
72
+ "gitHead": "1da5f98bd18b47382b652e104cdc4db1b9ee79db"
73
73
  }