Skip to content

Commit 98e4442

Browse files
committed
release: 2026.1.4
1 parent dcf7ac3 commit 98e4442

100 files changed

Lines changed: 2751 additions & 355 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.

CHANGELOG.md

Lines changed: 23 additions & 0 deletions

PRDs/REPOSITORY_MERGE_AND_LICENSE_GATING.md

Lines changed: 1962 additions & 0 deletions

apps/api/karrio/server/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2026.1.3
1+
2026.1.4

apps/dashboard/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/dashboard/next.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ const nextConfig = {
8282
"@karrio/app-store",
8383
],
8484
sassOptions: {
85-
includePaths: [path.join("src", "styles")],
85+
includePaths: [
86+
path.join("src", "styles"),
87+
path.resolve(__dirname, "../../node_modules"),
88+
],
8689
},
8790
async headers() {
8891
return [

apps/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"scripts": {
55
"dev": "next dev --port 3002",
6-
"build": "next build",
6+
"build": "next build --webpack",
77
"start": "next start",
88
"lint": "next lint"
99
},

apps/dashboard/src/styles/theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $footer-padding: 1rem 1.5rem;
4646
$footer-background-color: $white;
4747

4848
// Import only what you need from Bulma
49-
@import "../../node_modules/bulma/bulma.sass";
49+
@import "bulma/bulma.sass";
5050

5151
.isolated-card {
5252
margin: 0px auto;

apps/web/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/web/next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const nextConfig = {
1010
transpilePackages: [
1111
"@karrio/ui",
1212
],
13-
publicRuntimeConfig: {
13+
env: {
1414
NEXT_PUBLIC_POSTHOG_KEY: process.env.NEXT_PUBLIC_POSTHOG_KEY,
1515
NEXT_PUBLIC_POSTHOG_HOST: process.env.NEXT_PUBLIC_POSTHOG_HOST,
1616
},

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"dev:web": "next dev -p 3005",
8-
"build": "next build",
8+
"build": "next build --webpack",
99
"start": "next start",
1010
"lint": "next lint"
1111
},

0 commit comments

Comments
 (0)