@uscreen.de/dev-service 0.11.16 → 0.11.17
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/README.md +4 -0
- package/package.json +1 -1
- package/src/install.js +4 -1
package/README.md
CHANGED
|
@@ -328,6 +328,10 @@ And the folder structure would look like this:
|
|
|
328
328
|
|
|
329
329
|
> Format according to https://keepachangelog.com
|
|
330
330
|
|
|
331
|
+
### v0.11.17
|
|
332
|
+
#### Fixed
|
|
333
|
+
- custom services with container ports lower than 60 now work as expected
|
|
334
|
+
|
|
331
335
|
### v0.11.0
|
|
332
336
|
#### Added
|
|
333
337
|
- new `service pull` command
|
package/package.json
CHANGED
package/src/install.js
CHANGED
|
@@ -156,7 +156,10 @@ const readCustomServiceData = (service) => {
|
|
|
156
156
|
volumes
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
const template = YAML.stringify(templateObject
|
|
159
|
+
const template = YAML.stringify(templateObject, {
|
|
160
|
+
defaultKeyType: 'PLAIN',
|
|
161
|
+
defaultStringType: 'QUOTE_DOUBLE'
|
|
162
|
+
})
|
|
160
163
|
|
|
161
164
|
return { name, image, template }
|
|
162
165
|
}
|