@uscreen.de/dev-service 0.11.16 → 0.11.19

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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uscreen.de/dev-service",
3
- "version": "0.11.16",
3
+ "version": "0.11.19",
4
4
  "description": "cli to manage services in dev repos",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -40,14 +40,14 @@
40
40
  "templates"
41
41
  ],
42
42
  "devDependencies": {
43
- "@uscreen.de/eslint-config-prettystandard-node": "^0.2.6",
43
+ "@uscreen.de/eslint-config-prettystandard-node": "^0.2.8",
44
44
  "husky": ">=6",
45
45
  "lint-staged": ">=13.0.3",
46
46
  "tap": "^16.3.0"
47
47
  },
48
48
  "dependencies": {
49
- "c8": "^7.11.0",
50
- "commander": "^9.3.0",
49
+ "c8": "^7.12.0",
50
+ "commander": "^9.4.0",
51
51
  "fs-extra": "^10.0.1",
52
52
  "nanoid": "^4.0.0",
53
53
  "parse-json": "^6.0.2",
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
  }