Skip to content

Commit 11bc129

Browse files
committed
chore: conform project names in monorepo
1 parent f4073e5 commit 11bc129

File tree

34 files changed

+62
-61
lines changed

34 files changed

+62
-61
lines changed

.changeset/config.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
"baseBranch": "main",
2121
"updateInternalDependencies": "patch",
2222
"ignore": [
23-
"www.designsystemet.no",
23+
"@app/www",
24+
"@app/storybook",
25+
"@app/components",
26+
"@plugin/figma",
2427
"theme",
25-
"storefront",
26-
"@repo/components",
27-
"@designsystemet/storybook",
28-
"figma-plugin"
28+
"storefront"
2929
]
3030
}

apps/_components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@repo/components",
2+
"name": "@app/components",
33
"version": "0.0.0",
44
"private": true,
55
"author": "Designsystemet team",

apps/storefront/app/(frontpage)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { Container } from '@app/components';
12
import { Heading } from '@digdir/designsystemet-react';
23
import { ComponentIcon, PaletteIcon, WrenchIcon } from '@navikt/aksel-icons';
3-
import { Container } from '@repo/components';
44
import cn from 'clsx/lite';
55
import type React from 'react';
66

apps/storefront/app/bloggen/(frontpage)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { Container } from '@app/components';
12
import { PencilIcon } from '@navikt/aksel-icons';
2-
import { Container } from '@repo/components';
33
import type { Metadata } from 'next';
44

55
import { Banner, BannerHeading, BannerIcon } from 'components/Banner/Banner';

apps/storefront/app/bloggen/_components/PostLayout/PostLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { Container } from '@app/components';
12
import { Heading, Link, Paragraph } from '@digdir/designsystemet-react';
2-
import { Container } from '@repo/components';
33
import type * as React from 'react';
44

55
import { Image, MdxContent } from '../../../../components';

apps/storefront/app/komponenter/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { Container } from '@app/components';
12
import { ComponentFillIcon } from '@navikt/aksel-icons';
2-
import { Container } from '@repo/components';
33

44
import {
55
Banner,

apps/storefront/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import '../globals.css';
22
import '@digdir/designsystemet-css';
33
import '@digdir/designsystemet-theme';
44

5+
import { Figma, Github, Header, Slack } from '@app/components';
6+
import { Footer } from '@app/components';
57
import { SkipLink } from '@digdir/designsystemet-react';
68
import { EnvelopeClosedIcon } from '@navikt/aksel-icons';
7-
import { Figma, Github, Header, Slack } from '@repo/components';
8-
import { Footer } from '@repo/components';
99
import type { Metadata } from 'next';
1010
import Script from 'next/script';
1111
import { isProduction } from '../utils/is-production';

apps/storefront/app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { Container } from '@app/components';
12
import { Heading, Link, Paragraph } from '@digdir/designsystemet-react';
2-
import { Container } from '@repo/components';
33
import type { Metadata } from 'next';
44
import Image from 'next/image';
55
import NextLink from 'next/link';

apps/storefront/components/GithubLink/GithubLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client';
2+
import { Github } from '@app/components';
23
import { Link } from '@digdir/designsystemet-react';
3-
import { Github } from '@repo/components';
44
import { usePathname } from 'next/navigation';
55
import type { HTMLAttributes } from 'react';
66

apps/storefront/components/ImageBanner/ImageBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
2+
import { Container } from '@app/components';
23
import type { ButtonProps } from '@digdir/designsystemet-react';
34
import { Button, Heading, Link, Paragraph } from '@digdir/designsystemet-react';
4-
import { Container } from '@repo/components';
55
import cl from 'clsx/lite';
66
import NextLink from 'next/link';
77
import type React from 'react';

0 commit comments

Comments
 (0)