You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/container-contract.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,9 +127,9 @@ For more details, see the Go implementation in [state.go](../internal/librarian/
127
127
|`version`| string | The last released version of the library. | No | Must be a valid semantic version, "v" prefix is optional. |
128
128
|`last_generated_commit`| string | The commit hash from the API definition repository at which the library was last generated. | No | Must be a 40-character hexadecimal string. |
129
129
|`apis`| list | A list of [APIs](#apis-object) that are part of this library. | Yes | Must not be empty. |
130
-
|`source_paths`| list | A list of directories in the language repository where Librarian contributes code. | Yes | Must not be empty, and each path must be a valid directory path. |
130
+
|`source_roots`| list | A list of directories in the language repository where Librarian contributes code. | Yes | Must not be empty, and each path must be a valid directory path. |
131
131
|`preserve_regex`| list | A list of regular expressions for files and directories to preserve during the copy and remove process. | No | Each entry must be a valid regular expression. |
132
-
|`remove_regex`| list | A list of regular expressions for files and directories to remove before copying generated code. If not set, this defaults to the `source_paths`. A more specific `preserve_regex` takes precedence. | No | Each entry must be a valid regular expression. |
132
+
|`remove_regex`| list | A list of regular expressions for files and directories to remove before copying generated code. If not set, this defaults to the `source_roots`. A more specific `preserve_regex` takes precedence. | No | Each entry must be a valid regular expression. |
133
133
134
134
#### `apis` Object
135
135
@@ -153,7 +153,7 @@ Each object in the `apis` list represents a single API and has the following fie
Copy file name to clipboardExpand all lines: doc/state-schema.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ Each object in the `libraries` list represents a single library and has the foll
21
21
|`version`| string | The last released version of the library. | No | Must be a valid semantic version, "v" prefix is optional. |
22
22
|`last_generated_commit`| string | The commit hash from the API definition repository at which the library was last generated. | No | Must be a 40-character hexadecimal string. |
23
23
|`apis`| list | A list of [APIs](#apis-object) that are part of this library. | Yes | Must not be empty. |
24
-
|`source_paths`| list | A list of directories in the language repository where Librarian contributes code. | Yes | Must not be empty, and each path must be a valid directory path. |
24
+
|`source_roots`| list | A list of directories in the language repository where Librarian contributes code. | Yes | Must not be empty, and each path must be a valid directory path. |
25
25
|`preserve_regex`| list | A list of regular expressions for files and directories to preserve during the copy and remove process. | No | Each entry must be a valid regular expression. |
26
-
|`remove_regex`| list | A list of regular expressions for files and directories to remove before copying generated code. If not set, this defaults to the `source_paths`. A more specific `preserve_regex` takes precedence. | No | Each entry must be a valid regular expression. |
26
+
|`remove_regex`| list | A list of regular expressions for files and directories to remove before copying generated code. If not set, this defaults to the `source_roots`. A more specific `preserve_regex` takes precedence. | No | Each entry must be a valid regular expression. |
0 commit comments