Skip to content

Commit

Permalink
remove useless console output
Browse files Browse the repository at this point in the history
  • Loading branch information
ildella committed Sep 18, 2024
1 parent 6cbcf0e commit bb4a24f
Show file tree
Hide file tree
Showing 3 changed files with 190 additions and 231 deletions.
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svelte-marked",
"description": "A markdown renderer for Svelte.",
"version": "0.5.6",
"version": "0.5.7",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
Expand Down Expand Up @@ -40,26 +40,29 @@
"@sveltejs/vite-plugin-svelte": "3.1.2",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/svelte": "5.2.1",
"eslint": "9.9.1",
"eslint-plugin-svelte": "2.43.0",
"eslint": "9.10.0",
"eslint-plugin-svelte": "2.44.0",
"jsdom": "25.0.0",
"prettier": "3.3.3",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-terser": "7.0.2",
"sirv-cli": "2.0.2",
"svelte": "4.2.19",
"svelte-eslint-parser": "0.41.0",
"vite": "5.4.3",
"vitest": "2.0.5"
"svelte-eslint-parser": "0.41.1",
"vite": "5.4.6",
"vitest": "2.1.1"
},
"dependencies": {
"@types/marked": "6.0.0",
"github-slugger": "2.0.0",
"marked": "14.1.1"
"marked": "14.1.2"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"resolutions": {
"tough-cookie": "next"
},
"types": "./types/index.d.ts"
}
1 change: 1 addition & 0 deletions src/renderers/Heading.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
$: id = options.headerIds
? options.headerPrefix + slug(text)
: undefined
</script>

{#if depth === 1}
Expand Down
Loading

0 comments on commit bb4a24f

Please sign in to comment.