Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
868
Issues
868
List
Boards
Labels
Service Desk
Milestones
Merge Requests
53
Merge Requests
53
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
ceb30271
Commit
ceb30271
authored
2 hours ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chore): use exact paths for source maps
parent
90756b9e
chore/sentry-source-maps
No related merge requests found
Pipeline
#77885761
passed with stages
in 54 minutes and 53 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
.gitlab-ci.yml
.gitlab-ci.yml
+5
-1
channel.component.ts
src/app/modules/channels/channel.component.ts
+1
-1
No files found.
.gitlab-ci.yml
View file @
ceb30271
...
...
@@ -140,7 +140,7 @@ build:production:i18n:
-
echo "Create a new release $CI_COMMIT_SHA"
-
sentry-cli releases new $CI_COMMIT_SHA
-
sentry-cli releases set-commits --auto $CI_COMMIT_SHA
-
sentry-cli releases files $CI_COMMIT_SHA upload-sourcemaps $CI_PROJECT_DIR/dist/en -x .js -x .map --validate --
verbose --rewrite --strip-common-prefix
-
sentry-cli releases files $CI_COMMIT_SHA upload-sourcemaps $CI_PROJECT_DIR/dist/en -x .js -x .map --validate --
url-prefix $SOURCEMAP_PREFIX
-
sentry-cli releases finalize $CI_COMMIT_SHA
-
echo "Finalized release for $CI_COMMIT_SHA"
...
...
@@ -160,6 +160,8 @@ prepare:review:
prepare:review:sentry:
<<
:
*sentry_prepare
variables
:
SOURCEMAP_PREFIX
:
"
~/en"
except
:
refs
:
-
master
...
...
@@ -184,6 +186,8 @@ prepare:production:
prepare:production:sentry:
<<
:
*sentry_prepare
variables
:
SOURCEMAP_PREFIX
:
"
~/front/dist/en"
only
:
refs
:
-
master
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/channels/channel.component.ts
View file @
ceb30271
...
...
@@ -72,7 +72,7 @@ export class ChannelComponent {
if
(
params
[
'
username
'
])
{
this
.
changed
=
this
.
username
!==
params
[
'
username
'
];
this
.
username
=
params
[
'
username
'
];
throw
new
Error
(
'
testing
'
);
feedChanged
=
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment