@pgpm/geotypes 0.7.1 → 0.8.0
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/Makefile
CHANGED
package/README.md
CHANGED
|
@@ -64,13 +64,13 @@ pgpm deploy
|
|
|
64
64
|
```bash
|
|
65
65
|
# 1. Create a workspace
|
|
66
66
|
pgpm init --workspace
|
|
67
|
-
cd my-app
|
|
68
67
|
|
|
69
68
|
# 2. Create your first module
|
|
69
|
+
cd my-workspace
|
|
70
70
|
pgpm init
|
|
71
|
-
cd packages/your-module
|
|
72
71
|
|
|
73
|
-
# 3. Install a package
|
|
72
|
+
# 3. Install a package
|
|
73
|
+
cd packages/my-module
|
|
74
74
|
pgpm install @pgpm/geotypes
|
|
75
75
|
|
|
76
76
|
# 4. Deploy everything
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# launchql-geo-types extension
|
|
2
2
|
comment = 'launchql-geo-types extension'
|
|
3
|
-
default_version = '0.
|
|
3
|
+
default_version = '0.7.2'
|
|
4
4
|
module_pathname = '$libdir/launchql-geo-types'
|
|
5
5
|
requires = 'plpgsql,citext,postgis,launchql-types,launchql-verify'
|
|
6
6
|
relocatable = false
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/geotypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Geographic data types and spatial functions for PostgreSQL",
|
|
5
|
+
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"Interweb <developers@interweb.co>"
|
|
8
|
+
],
|
|
5
9
|
"keywords": [
|
|
6
10
|
"postgresql",
|
|
7
11
|
"pgpm",
|
|
@@ -17,8 +21,8 @@
|
|
|
17
21
|
"test:watch": "jest --watch"
|
|
18
22
|
},
|
|
19
23
|
"dependencies": {
|
|
20
|
-
"@pgpm/types": "0.
|
|
21
|
-
"@pgpm/verify": "0.
|
|
24
|
+
"@pgpm/types": "0.8.0",
|
|
25
|
+
"@pgpm/verify": "0.8.0"
|
|
22
26
|
},
|
|
23
27
|
"devDependencies": {
|
|
24
28
|
"pgpm": "^0.2.0"
|
|
@@ -31,5 +35,5 @@
|
|
|
31
35
|
"bugs": {
|
|
32
36
|
"url": "https://github.com/launchql/pgpm-modules/issues"
|
|
33
37
|
},
|
|
34
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "76daa8923128fd8f93a8fd5303239ec998c0bf98"
|
|
35
39
|
}
|
|
File without changes
|