Skip to content

Commit cc02dab

Browse files
committed
Merge branch 'main' into 'fix-usage-layout-shifts'.
2 parents c4b925c + d74cf29 commit cc02dab

171 files changed

Lines changed: 5735 additions & 835 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

eslint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export default ts.config(
3232
'svelte/no-at-html-tags': 'off',
3333
'svelte/no-useless-mustaches': 'off',
3434
'svelte/no-reactive-reassign': 'off',
35-
'svelte/no-reactive-literals': 'off'
35+
'svelte/no-reactive-literals': 'off',
36+
// TODO: @itznotabug, this requires a big refactor!
37+
'svelte/no-navigation-without-resolve': 'off'
3638
}
3739
},
3840
{

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
},
2323
"dependencies": {
2424
"@ai-sdk/svelte": "^1.1.24",
25-
"@appwrite.io/console": "https://pkg.pr.new/appwrite-labs/cloud/@appwrite.io/console@6031134",
25+
"@appwrite.io/console": "https://pkg.pr.new/appwrite-labs/cloud/@appwrite.io/console@7747562",
2626
"@appwrite.io/pink-icons": "0.25.0",
27-
"@appwrite.io/pink-icons-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-icons-svelte@1489b16",
27+
"@appwrite.io/pink-icons-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-icons-svelte@f2198f1",
2828
"@appwrite.io/pink-legacy": "^1.0.3",
29-
"@appwrite.io/pink-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-svelte@1489b16",
29+
"@appwrite.io/pink-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-svelte@f2198f1",
3030
"@faker-js/faker": "^9.9.0",
3131
"@popperjs/core": "^2.11.8",
3232
"@sentry/sveltekit": "^8.38.0",
@@ -54,7 +54,7 @@
5454
"@melt-ui/svelte": "^0.86.5",
5555
"@playwright/test": "^1.51.1",
5656
"@sveltejs/adapter-static": "^3.0.8",
57-
"@sveltejs/kit": "^2.36.2",
57+
"@sveltejs/kit": "^2.42.1",
5858
"@sveltejs/vite-plugin-svelte": "^5.0.3",
5959
"@testing-library/dom": "^10.4.0",
6060
"@testing-library/jest-dom": "^6.6.3",

pnpm-lock.yaml

Lines changed: 47 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/actions/analytics.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { user } from '$lib/stores/user';
66
import { ENV, MODE, VARS, isCloud } from '$lib/system';
77
import { AppwriteException } from '@appwrite.io/console';
88
import { browser } from '$app/environment';
9-
import { getReferrerAndUtmSource } from '$lib/helpers/utm';
9+
import { getReferrerAndUtmSource, getTrackedQueryParams } from '$lib/helpers/utm';
1010

1111
function plausible(domain: string): AnalyticsPlugin {
1212
if (!browser) return { name: 'analytics-plugin-plausible' };
@@ -65,7 +65,7 @@ export function trackEvent(name: string, data: object = null): void {
6565
};
6666
}
6767

68-
data = { ...data, ...getReferrerAndUtmSource() };
68+
data = { ...data, ...getReferrerAndUtmSource(), ...getTrackedQueryParams() };
6969

7070
if (ENV.DEV || ENV.PREVIEW) {
7171
console.debug(`[Analytics] Event ${name} ${path}`, data);
@@ -429,5 +429,6 @@ export enum Submit {
429429
RecordUpdate = 'submit_dns_record_update',
430430
RecordDelete = 'submit_dns_record_delete',
431431
SearchClear = 'submit_clear_search',
432-
FrameworkDetect = 'submit_framework_detect'
432+
FrameworkDetect = 'submit_framework_detect',
433+
TestimonialView = 'testimonial_view'
433434
}

0 commit comments

Comments
 (0)