npgsqlrest 1.2.0 → 1.2.1
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/package.json +1 -1
- package/readme.md +10 -6
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -100,13 +100,9 @@ $ npx npgsqlrest appsettings.json project-config.json
|
|
|
100
100
|
|
|
101
101
|
See the detailed change log here: [NpgsqlRest Changelog](https://vb-consulting.github.io/npgsqlrest/changelog/)
|
|
102
102
|
|
|
103
|
-
### 1.1
|
|
104
|
-
|
|
105
|
-
Changed the download target from `./node_modules/npgsqlrest/.bin/` to shared bin: `./node_modules/.bin/`.
|
|
103
|
+
### 1.2.1
|
|
106
104
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
But now, I have to use the uninstall script too, to ensure the proper cleanup on the install.
|
|
105
|
+
Fix readme
|
|
110
106
|
|
|
111
107
|
### 1.2.0
|
|
112
108
|
|
|
@@ -118,6 +114,14 @@ NpgsqlRest.HttpFiles 1.0.2.0
|
|
|
118
114
|
NpgsqlRest.TsClient 1.7.0.0
|
|
119
115
|
```
|
|
120
116
|
|
|
117
|
+
### 1.1.8
|
|
118
|
+
|
|
119
|
+
Changed the download target from `./node_modules/npgsqlrest/.bin/` to shared bin: `./node_modules/.bin/`.
|
|
120
|
+
|
|
121
|
+
The reason is that when using the `./node_modules/npgsqlrest/.bin/` directory, I have to use the node spawn process wrapper which slows down the startup time. When the executable is in the `./node_modules/.bin/` it can be invoked directly which is an extremely fast, almost instant startup (a couple of milliseconds).
|
|
122
|
+
|
|
123
|
+
But now, I have to use the uninstall script too, to ensure the proper cleanup on the install.
|
|
124
|
+
|
|
121
125
|
### 1.1.7
|
|
122
126
|
|
|
123
127
|
Update readme.
|