@ossy/deployment-tools 0.0.9 → 0.0.10

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/dist/index.js CHANGED
@@ -28729,7 +28729,7 @@ class ContainerManagerCommands {
28729
28729
  async getDeploymentPlatforms(pathToDeploymentPlatforms) {
28730
28730
 
28731
28731
  const localDevPlatform = {
28732
- name: 'local-dev',
28732
+ name: 'dev',
28733
28733
  domain: 'localhost',
28734
28734
  supportedDeploymentTypes: ['CONTAINER']
28735
28735
  }
@@ -28765,7 +28765,7 @@ class ContainerManagerCommands {
28765
28765
  deploy(
28766
28766
  username,
28767
28767
  authentication,
28768
- targetEnvironment = 'local-dev',
28768
+ targetEnvironment = 'dev',
28769
28769
  pathToDeploymentPlatforms,
28770
28770
  pathToOssyFile
28771
28771
  ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -29,7 +29,7 @@ export class ContainerManagerCommands {
29
29
  async getDeploymentPlatforms(pathToDeploymentPlatforms) {
30
30
 
31
31
  const localDevPlatform = {
32
- name: 'local-dev',
32
+ name: 'dev',
33
33
  domain: 'localhost',
34
34
  supportedDeploymentTypes: ['CONTAINER']
35
35
  }
@@ -65,7 +65,7 @@ export class ContainerManagerCommands {
65
65
  deploy(
66
66
  username,
67
67
  authentication,
68
- targetEnvironment = 'local-dev',
68
+ targetEnvironment = 'dev',
69
69
  pathToDeploymentPlatforms,
70
70
  pathToOssyFile
71
71
  ) {