@uscreen.de/dev-service 0.12.7 → 0.12.9

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/package.json +3 -3
  2. package/src/install.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uscreen.de/dev-service",
3
- "version": "0.12.7",
3
+ "version": "0.12.9",
4
4
  "description": "cli to manage services in dev repos",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -46,8 +46,8 @@
46
46
  "tap": "^16.3.2"
47
47
  },
48
48
  "dependencies": {
49
- "c8": "^7.12.0",
50
- "commander": "^10.0.0",
49
+ "c8": "^8.0.0",
50
+ "commander": "^11.0.0",
51
51
  "fs-extra": "^11.1.0",
52
52
  "nanoid": "^4.0.0",
53
53
  "parse-json": "^7.0.0",
package/src/install.js CHANGED
@@ -144,7 +144,8 @@ const readCustomServiceData = (service) => {
144
144
 
145
145
  // volume is named => we add it to top level "volumes" directive:
146
146
  volumes[volumeName] = {
147
- name: `{{projectname}}-${volumeName}`
147
+ name: `{{projectname}}-${volumeName}`,
148
+ external: true
148
149
  }
149
150
  }
150
151
  }