@toolsplus/nx-forge 4.2.0 → 4.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsplus/nx-forge",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "Atlassian Forge plugin for Nx",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  export interface DeployExecutorOptions {
2
2
  outputPath: string;
3
- environment: 'development' | 'staging' | 'production';
3
+ environment: string;
4
4
  verify: boolean;
5
5
  interactive: boolean;
6
6
  verbose: boolean;
@@ -13,8 +13,7 @@
13
13
  },
14
14
  "environment": {
15
15
  "type": "string",
16
- "enum": ["development", "staging", "production"],
17
- "description": "Environment to deploy to: development, staging, production.",
16
+ "description": "Environment to deploy to.",
18
17
  "alias": "e",
19
18
  "default": "development"
20
19
  },
@@ -2,7 +2,7 @@ export interface InstallExecutorOptions {
2
2
  outputPath: string;
3
3
  site: string;
4
4
  product: 'jira' | 'confluence' | 'compass';
5
- environment: 'development' | 'staging' | 'production';
5
+ environment: string;
6
6
  upgrade: boolean;
7
7
  confirmScopes: boolean;
8
8
  interactive: boolean;
@@ -23,8 +23,7 @@
23
23
  },
24
24
  "environment": {
25
25
  "type": "string",
26
- "enum": ["development", "staging", "production"],
27
- "description": "Environment to install to: development, staging, production.",
26
+ "description": "Environment to install to.",
28
27
  "alias": "e",
29
28
  "default": "development"
30
29
  },