* Removes a trailing slash from a path so glob patterns can be appended cleanly.
(path: string)
| 72 | * Removes a trailing slash from a path so glob patterns can be appended cleanly. |
| 73 | */ |
| 74 | function removeTrailingSlash(path: string): string { |
| 75 | return path.replace(/\/$/, ''); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Builds the plugin options for `createSentryBuildPluginManager` from the Sentry Nitro options. |
no test coverage detected