Skip to content

Commit

Permalink
Merge branch 'feature/manfred2md' of github.com:Lemoncode/manfred-exp…
Browse files Browse the repository at this point in the history
…ort-app into feature/manfred2md
  • Loading branch information
nasdan committed Jul 11, 2023
2 parents 33b23d3 + 1f4d716 commit dadd4dc
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions packages/manfred-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
"import": "./src/doc-parts/soft-skill-section/index.ts",
"require": "./src/doc-parts/soft-skill-section/index.ts",
"types": "./src/doc-parts/soft-skill-section/index.ts"
},
"./studies-section": {
"import": "./src/doc-parts/studies-section/index.ts",
"require": "./src/doc-parts/studies-section/index.ts",
"types": "./src/doc-parts/studies-section/index.ts"
}
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './studies-section.constants';
export * from './studies-section.vm';
export * from './studies-section.mapper';
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Paragraph, TextRun } from 'docx';
import { StudiesSectionVm } from '@lemoncode/manfred-common/studies-section';
import { generateLineSpacer } from '@/common-app';
import { StudiesSectionVm } from './studies-section.vm';

export const generateTitleStudiesSection = () => {
return new Paragraph({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { StudiesSectionVm } from './studies-section.vm';
import { Table, TableCell, TableRow } from 'docx';
import { StudiesSectionVm, mapFromMacCvToStudiesSectionVm } from '@lemoncode/manfred-common/studies-section';
import { ManfredAwesomicCV } from '@/model';
import { mapFromMacCvToStudiesSectionVm } from './studies-section.mapper';
import { sectionStudiesSection, generateTitleStudiesSection } from './sections-studies-section.part';
import { styles } from './studies-section.styles';

Expand Down

0 comments on commit dadd4dc

Please sign in to comment.