cleanup
This commit is contained in:
parent
fd585030a0
commit
6125ee464b
3 changed files with 813 additions and 1420 deletions
21
package.json
21
package.json
|
|
@ -56,32 +56,31 @@
|
|||
"@types/css": "^0.0.37",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"@types/fs-extra": "^11.0.4",
|
||||
"@types/google-publisher-tag": "^1.20241202.0",
|
||||
"@types/google-publisher-tag": "^1.20250210.0",
|
||||
"@types/gtag.js": "^0.0.12",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/node": "^22.10.7",
|
||||
"@types/node": "^22.14.1",
|
||||
"@types/prompts": "^2.4.9",
|
||||
"@types/proper-url-join": "^2.1.5",
|
||||
"@types/pym.js": "^1.3.2",
|
||||
"@types/react": "^18.3.18",
|
||||
"@types/react": "^18.3.20",
|
||||
"@types/react-syntax-highlighter": "^15.5.13",
|
||||
"change-case": "^5.4.4",
|
||||
"chromatic": "^11.28.2",
|
||||
"css": "^3.0.0",
|
||||
"css-color-converter": "^2.0.0",
|
||||
"deep-object-diff": "^1.1.9",
|
||||
"eslint": "^9.24.0",
|
||||
"eslint": "^9.25.0",
|
||||
"eslint-plugin-mdx": "^3.4.0",
|
||||
"eslint-plugin-react": "^7.37.4",
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-storybook": "^0.12.0",
|
||||
"fs-extra": "^11.3.0",
|
||||
"kleur": "^4.1.5",
|
||||
"knip": "^5.50.5",
|
||||
"mermaid": "^10.9.3",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.5.3",
|
||||
"prettier": "^3.5.2",
|
||||
"prettier": "^3.5.3",
|
||||
"prettier-plugin-svelte": "^3.3.3",
|
||||
"prism-themes": "^1.9.0",
|
||||
"prompts": "^2.4.2",
|
||||
|
|
@ -91,16 +90,14 @@
|
|||
"react-colorful": "^5.6.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-syntax-highlighter": "^15.6.1",
|
||||
"remark-gfm": "^4.0.0",
|
||||
"rimraf": "^6.0.1",
|
||||
"sass": "^1.86.3",
|
||||
"storybook": "^8.6.12",
|
||||
"svelte": "^5.28.0",
|
||||
"svelte": "^5.28.1",
|
||||
"svelte-check": "^4.1.6",
|
||||
"svelte-loader": "^3.2.4",
|
||||
"tiny-glob": "^0.2.9",
|
||||
"typescript": "^5.8.3",
|
||||
"vite": "^6.3.0"
|
||||
"vite": "^6.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/free-regular-svg-icons": "^6.7.2",
|
||||
|
|
@ -110,8 +107,6 @@
|
|||
"dayjs": "^1.11.13",
|
||||
"es-toolkit": "^1.35.0",
|
||||
"journalize": "^2.6.0",
|
||||
"marked": "^15.0.7",
|
||||
"marked-smartypants": "^1.1.9",
|
||||
"proper-url-join": "^2.1.2",
|
||||
"pym.js": "^1.3.2",
|
||||
"slugify": "^1.6.6",
|
||||
|
|
|
|||
2169
pnpm-lock.yaml
2169
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
|
@ -1,43 +0,0 @@
|
|||
<script>
|
||||
import Article from '../../Article/Article.svelte';
|
||||
import Headline from '../../Headline/Headline.svelte';
|
||||
import BodyText from '../../BodyText/BodyText.svelte';
|
||||
import GraphicBlock from '../../GraphicBlock/GraphicBlock.svelte';
|
||||
</script>
|
||||
|
||||
<Article>
|
||||
<Headline
|
||||
hed={'Reuters Graphics Interactive'}
|
||||
dek={'The beginning of a beautiful page'}
|
||||
section={'Global news'}
|
||||
authors={['Jon McClure', 'Prasanta Kumar Dutta']}
|
||||
publishTime={new Date('2021-09-12').toISOString()}
|
||||
/>
|
||||
<BodyText
|
||||
text={`Bacon ipsum dolor amet cupim porchetta chuck buffalo sirloin beef. Biltong ham brisket tenderloin hamburger doner.
|
||||
|
||||
Prosciutto kevin brisket sirloin pork loin shoulder cupim sausage chicken jowl strip steak rump pork ball tip ham hock. Swine pork belly fatback alcatra jowl.
|
||||
|
||||
## Brisket sirloin
|
||||
|
||||
Shank strip steak turkey shoulder shankle leberkas pork chop, t-bone picanha buffalo ground round burgdoggen ribeye.
|
||||
`}
|
||||
/>
|
||||
<GraphicBlock
|
||||
title="Steak tar-tar"
|
||||
description="Andouille pork loin cow buffalo pork chop shoulder."
|
||||
notes="Source: U.S. FDA"
|
||||
>
|
||||
<div class="fake-graphic"></div>
|
||||
</GraphicBlock>
|
||||
<BodyText
|
||||
text={'Bacon ipsum dolor amet cupim porchetta chuck buffalo sirloin beef. Biltong ham brisket tenderloin hamburger doner.'}
|
||||
/>
|
||||
</Article>
|
||||
|
||||
<style>
|
||||
div.fake-graphic {
|
||||
height: 200px;
|
||||
border: 1px solid var(--theme-colour-accent);
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in a new issue