Skip to content

Commit 0cdfd92

Browse files
thomasdavisclaude
andcommitted
fix(themes): update @resume/core imports to @jsonresume/core in source files
The previous commit only fixed package.json dependencies but not the actual import statements in the source files, causing the build to fail. Updates 56 source files across all themes to use the correct package name. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7297592 commit 0cdfd92

File tree

56 files changed

+138
-63
lines changed

Some content is hidden

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

56 files changed

+138
-63
lines changed

packages/themes/jsonresume-theme-academic-cv-lite/src/Resume.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import { Section, SectionTitle, DateRange, ContactInfo } from '@resume/core';
3+
import {
4+
Section,
5+
SectionTitle,
6+
DateRange,
7+
ContactInfo,
8+
} from '@jsonresume/core';
49

510
const Layout = styled.div`
611
max-width: 800px;

packages/themes/jsonresume-theme-architects-portfolio/src/Resume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import { Section, DateRange, ContactInfo } from '@resume/core';
3+
import { Section, DateRange, ContactInfo } from '@jsonresume/core';
44

55
// Layout styled components
66
const Layout = styled.div`

packages/themes/jsonresume-theme-asymmetric-timeline/src/Resume.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import { Section, SectionTitle, ContactInfo, DateRange } from '@resume/core';
3+
import {
4+
Section,
5+
SectionTitle,
6+
ContactInfo,
7+
DateRange,
8+
} from '@jsonresume/core';
49

510
// Layout
611
const Layout = styled.div`

packages/themes/jsonresume-theme-berlin-grid/src/Resume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
ContactInfo,
1111
Link,
1212
safeUrl,
13-
} from '@resume/core';
13+
} from '@jsonresume/core';
1414

1515
const GRID_SIZE = 8;
1616

packages/themes/jsonresume-theme-bold-header-statement/src/Resume.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import { Section, SectionTitle, ContactInfo, DateRange } from '@resume/core';
3+
import {
4+
Section,
5+
SectionTitle,
6+
ContactInfo,
7+
DateRange,
8+
} from '@jsonresume/core';
49

510
// Layout
611
const Layout = styled.div`

packages/themes/jsonresume-theme-californian-warm/src/Resume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
ContactInfo,
1010
Link,
1111
safeUrl,
12-
} from '@resume/core';
12+
} from '@jsonresume/core';
1313

1414
const Layout = styled.div`
1515
max-width: 820px;

packages/themes/jsonresume-theme-coastal-creative/src/Resume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
ContactInfo,
1010
Link,
1111
safeUrl,
12-
} from '@resume/core';
12+
} from '@jsonresume/core';
1313

1414
const Layout = styled.div`
1515
max-width: 850px;

packages/themes/jsonresume-theme-community-garden/src/Resume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
ContactInfo,
88
Link,
99
safeUrl,
10-
} from '@resume/core';
10+
} from '@jsonresume/core';
1111

1212
const Layout = styled.div`
1313
max-width: 850px;

packages/themes/jsonresume-theme-creative-studio/src/ui/Resume.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from 'react';
22
import styled from 'styled-components';
3-
import { Section, SectionTitle, DateRange, ContactInfo } from '@resume/core';
3+
import {
4+
Section,
5+
SectionTitle,
6+
DateRange,
7+
ContactInfo,
8+
} from '@jsonresume/core';
49

510
// Creative Studio Theme - Artistic yet professional
611
// Rounded sans-serif with slightly taller line height

packages/themes/jsonresume-theme-data-driven/src/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* JSON Resume Data-Driven Theme
33
* Analytical design with metrics-focused layout and sky blue accent
4-
* Built with @resume/core primitives and React SSR
4+
* Built with @jsonresume/core primitives and React SSR
55
*/
66

77
import { renderToString } from 'react-dom/server';

0 commit comments

Comments
 (0)