|
16 | 16 | # See the License for the specific language governing permissions and |
17 | 17 | # limitations under the License. |
18 | 18 |
|
19 | | -# shellcheck disable=SC2181 |
| 19 | +# shellcheck disable=SC2181,SC2016 |
20 | 20 |
|
21 | 21 | # Publishes a new version of the project to the npm package registry. |
22 | 22 | # |
@@ -227,7 +227,7 @@ update_package_meta_data() { |
227 | 227 | if [[ -n "$(git status --porcelain)" ]]; then |
228 | 228 | echo '' >&2 |
229 | 229 | echo 'Committing changes...' >&2 |
230 | | - git add -A && git commit -m 'Update directories meta data' |
| 230 | + git add -A && git commit -m 'chore: update directories meta data' |
231 | 231 | if [[ "$?" -ne 0 ]]; then |
232 | 232 | echo '' >&2 |
233 | 233 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
@@ -279,7 +279,7 @@ update_namespace_tocs() { |
279 | 279 | if [[ -n "$(git status --porcelain)" ]]; then |
280 | 280 | echo '' >&2 |
281 | 281 | echo 'Committing changes...' >&2 |
282 | | - git add -A && git commit -m 'Update namespace ToCs' |
| 282 | + git add -A && git commit -m 'docs: update namespace ToCs' |
283 | 283 | if [[ "$?" -ne 0 ]]; then |
284 | 284 | echo '' >&2 |
285 | 285 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
@@ -308,7 +308,7 @@ update_markdown_related() { |
308 | 308 | if [[ -n "$(git status --porcelain)" ]]; then |
309 | 309 | echo '' >&2 |
310 | 310 | echo 'Committing changes...' >&2 |
311 | | - git add -A && git commit -m 'Update related packages' |
| 311 | + git add -A && git commit -m 'docs: update related packages' |
312 | 312 | if [[ "$?" -ne 0 ]]; then |
313 | 313 | echo '' >&2 |
314 | 314 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
@@ -337,7 +337,7 @@ update_markdown_package_urls() { |
337 | 337 | if [[ -n "$(git status --porcelain)" ]]; then |
338 | 338 | echo '' >&2 |
339 | 339 | echo 'Committing changes...' >&2 |
340 | | - git add -A && git commit -m 'Update package URLs' |
| 340 | + git add -A && git commit -m 'docs: update package URLs' |
341 | 341 | if [[ "$?" -ne 0 ]]; then |
342 | 342 | echo '' >&2 |
343 | 343 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
@@ -366,7 +366,7 @@ update_repl_docs() { |
366 | 366 | if [[ -n "$(git status --porcelain)" ]]; then |
367 | 367 | echo '' >&2 |
368 | 368 | echo 'Committing changes...' >&2 |
369 | | - git add -A && git commit -m 'Update REPL docs' |
| 369 | + git add -A && git commit -m 'docs: update REPL docs' |
370 | 370 | if [[ "$?" -ne 0 ]]; then |
371 | 371 | echo '' >&2 |
372 | 372 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
@@ -473,7 +473,7 @@ publish_bundles() { |
473 | 473 | if [[ -n "$(git status --porcelain)" ]]; then |
474 | 474 | echo '' >&2 |
475 | 475 | echo 'Committing changes...' >&2 |
476 | | - git add -A && git commit -m 'Update dist versions' |
| 476 | + git add -A && git commit -m 'build: update dist versions' |
477 | 477 | if [[ "$?" -ne 0 ]]; then |
478 | 478 | echo '' >&2 |
479 | 479 | echo 'Error: unexpected error. Unable to commit changes.' >&2 |
|
0 commit comments