Skip to content

Commit

Permalink
docs(module-federation): remote schema should show updated regex for …
Browse files Browse the repository at this point in the history
…names #28558
  • Loading branch information
Coly010 committed Oct 24, 2024
1 parent 7839c80 commit 23cb585
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/generated/packages/angular/generators/remote.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"name": {
"type": "string",
"description": "The name to give to the remote Angular app.",
"pattern": "^[a-zA-Z][^:]*$",
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
"x-priority": "important"
},
"host": {
Expand Down
2 changes: 1 addition & 1 deletion docs/generated/packages/react/generators/remote.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"name": {
"type": "string",
"description": "The name of the remote application to generate the Module Federation configuration",
"pattern": "^[a-zA-Z][^:]*$",
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
"x-priority": "important"
},
"dynamic": {
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/generators/remote/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"name": {
"type": "string",
"description": "The name to give to the remote Angular app.",
"pattern": "^[a-zA-Z][^:]*$",
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
"x-priority": "important"
},
"host": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/generators/remote/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"name": {
"type": "string",
"description": "The name of the remote application to generate the Module Federation configuration",
"pattern": "^[a-zA-Z][^:]*$",
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
"x-priority": "important"
},
"dynamic": {
Expand Down

0 comments on commit 23cb585

Please sign in to comment.