Skip to content

Commit

Permalink
chore: fix release sentry tag
Browse files Browse the repository at this point in the history
  • Loading branch information
wessberg committed May 19, 2021
1 parent be02e53 commit f7c3a28
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"Base64": "1.1.0",
"blob-polyfill": "5.0.20210201",
"browserslist": "4.16.6",
"browserslist-generator": "1.0.53",
"browserslist-generator": "1.0.55",
"chalk": "4.1.1",
"console-polyfill": "0.3.0",
"construct-style-sheets-polyfill": "2.4.16",
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface Config {
}

export const config: Config = {
version: `${pkg.name}@${pkg.version}:${Date.now()}`,
version: `${pkg.name}@${pkg.version}:${Date.now()}`.replace(/\//g, "_"),
sentryDsn: environment.SENTRY_DSN,
environment: environment.NODE_ENV,
production: environment.NODE_ENV != null && environment.NODE_ENV.toLowerCase() === "production",
Expand Down

0 comments on commit f7c3a28

Please sign in to comment.