@forge/manifest 12.1.1-next.0-experimental-1dcd593 → 12.1.1-next.1-experimental-e2ec7ba

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/CHANGELOG.md CHANGED
@@ -1,10 +1,6 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 12.1.1-next.0-experimental-1dcd593
4
-
5
- ### Minor Changes
6
-
7
- - b59aee1: Support hot reloading for forge containers tunneling
3
+ ## 12.1.1-next.1-experimental-e2ec7ba
8
4
 
9
5
  ### Patch Changes
10
6
 
@@ -12,6 +8,12 @@
12
8
  - 561036a: Update manifest definitions
13
9
  - b248c8f: Update manifest definitions
14
10
 
11
+ ## 12.1.1-next.1
12
+
13
+ ### Patch Changes
14
+
15
+ - beddb18: Update manifest definitions
16
+
15
17
  ## 12.1.1-next.0
16
18
 
17
19
  ### Patch Changes
@@ -30075,87 +30075,6 @@
30075
30075
  "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*=.+$"
30076
30076
  },
30077
30077
  "description": "The custom environment variables available to the running processes in the container"
30078
- },
30079
- "working_dir": {
30080
- "type": "string",
30081
- "description": "The working directory for commands to run in. This will override the default WORKDIR specified in the Dockerfile"
30082
- },
30083
- "command": {
30084
- "oneOf": [
30085
- {
30086
- "type": "string",
30087
- "description": "The command to run in the container as a single string"
30088
- },
30089
- {
30090
- "type": "array",
30091
- "items": {
30092
- "type": "string"
30093
- },
30094
- "description": "The command to run in the container as an array of strings"
30095
- }
30096
- ],
30097
- "description": "The command to run in the container. This will override the default CMD specified in the Dockerfile"
30098
- },
30099
- "develop": {
30100
- "type": "object",
30101
- "additionalProperties": false,
30102
- "properties": {
30103
- "watch": {
30104
- "type": "array",
30105
- "items": {
30106
- "type": "object",
30107
- "required": [
30108
- "path",
30109
- "action"
30110
- ],
30111
- "additionalProperties": false,
30112
- "properties": {
30113
- "path": {
30114
- "type": "string",
30115
- "description": "The path to source code (relative to the project directory) to monitor for changes"
30116
- },
30117
- "target": {
30118
- "type": "string",
30119
- "description": "The destination path inside the container where source file changes should be synced to. This attribute is only required when the action is set to sync."
30120
- },
30121
- "action": {
30122
- "type": "string",
30123
- "enum": [
30124
- "sync",
30125
- "rebuild",
30126
- "restart",
30127
- "sync+restart"
30128
- ],
30129
- "description": "The possible actions to take when changes are detected. Refer to official docker documentation for more details on each action"
30130
- },
30131
- "ignore": {
30132
- "type": "array",
30133
- "items": {
30134
- "type": "string"
30135
- },
30136
- "description": "A list of paths or patterns to ignore when watching for changes"
30137
- },
30138
- "include": {
30139
- "type": "array",
30140
- "items": {
30141
- "type": "string"
30142
- },
30143
- "description": "A list of paths or patterns to specifically include when watching for changes"
30144
- }
30145
- }
30146
- },
30147
- "description": "A list of rules that control automatic service updates based on local file changes"
30148
- }
30149
- },
30150
- "description": "A section of config which groups development-specific features together"
30151
- },
30152
- "volumes": {
30153
- "type": "array",
30154
- "items": {
30155
- "type": "string",
30156
- "pattern": "^[^:]+:[^:]+(:ro|:rw)?$"
30157
- },
30158
- "description": "Volumes define mount points that are accessible by service containers. The format is 'source:container_path[:mode]' where mode is optional and can be 'ro' (read-only) or by default 'rw' (read-write)"
30159
30078
  }
30160
30079
  }
30161
30080
  }
@@ -74158,48 +74158,6 @@ export interface ContainerTunnelConfig {
74158
74158
  * The custom environment variables available to the running processes in the container
74159
74159
  */
74160
74160
  environment?: string[];
74161
- /**
74162
- * The working directory for commands to run in. This will override the default WORKDIR specified in the Dockerfile
74163
- */
74164
- working_dir?: string;
74165
- /**
74166
- * The command to run in the container. This will override the default CMD specified in the Dockerfile
74167
- */
74168
- command?: string | string[];
74169
- /**
74170
- * A section of config which groups development-specific features together
74171
- */
74172
- develop?: {
74173
- /**
74174
- * A list of rules that control automatic service updates based on local file changes
74175
- */
74176
- watch?: {
74177
- /**
74178
- * The path to source code (relative to the project directory) to monitor for changes
74179
- */
74180
- path: string;
74181
- /**
74182
- * The destination path inside the container where source file changes should be synced to. This attribute is only required when the action is set to sync.
74183
- */
74184
- target?: string;
74185
- /**
74186
- * The possible actions to take when changes are detected. Refer to official docker documentation for more details on each action
74187
- */
74188
- action: 'sync' | 'rebuild' | 'restart' | 'sync+restart';
74189
- /**
74190
- * A list of paths or patterns to ignore when watching for changes
74191
- */
74192
- ignore?: string[];
74193
- /**
74194
- * A list of paths or patterns to specifically include when watching for changes
74195
- */
74196
- include?: string[];
74197
- }[];
74198
- };
74199
- /**
74200
- * Volumes define mount points that are accessible by service containers. The format is 'source:container_path[:mode]' where mode is optional and can be 'ro' (read-only) or by default 'rw' (read-write)
74201
- */
74202
- volumes?: string[];
74203
74161
  };
74204
74162
  }
74205
74163
  export interface Scaling {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.1.1-next.0-experimental-1dcd593",
3
+ "version": "12.1.1-next.1-experimental-e2ec7ba",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {