Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/self-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ${{ steps.config.outputs.webpack-path }}
key: ${{ runner.os }}-self-hosted-webpack-cache-${{ hashFiles('webpack.config.ts') }}
key: ${{ runner.os }}-self-hosted-webpack-cache-${{ hashFiles('rspack.config.ts', 'pnpm-lock.yaml', 'package.json') }}

- name: node_modules cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
Expand Down
2 changes: 1 addition & 1 deletion .vercelignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
!tsconfig.json
!config
!config/tsconfig.build.json
!webpack.config.js
!rspack.config.ts
!pnpm-lock.yaml
!tests
!fixtures
Expand Down
2 changes: 1 addition & 1 deletion knip.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const productionEntryPoints = [
// dynamic imports _not_ recognized by knip
'static/app/bootstrap/initializeMain.tsx',
'static/gsApp/initializeBundleMetrics.tsx',
// defined in webpack.config pipelines
// defined in rspack.config.ts pipelines
'static/app/utils/statics-setup.tsx',
'static/app/views/integrationPipeline/index.tsx',
// very dynamically imported
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/extractSlug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type ExtractedSlug = {

// XXX: If you change this also change its sibiling in:
// - static/index.ejs
// - webpack.config.ts
// - rspack.config.ts
const KNOWN_DOMAINS = /(?:\.?)((?:localhost|dev\.getsentry\.net|sentry\.dev)(?::\d*)?)$/;

/**
Expand Down
Loading