Skip to content

Commit 4393b13

Browse files
committed
chore: delete console.debug refs #51
1 parent d933479 commit 4393b13

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/index.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@ import React, { forwardRef, Ref } from 'react';
22

33
import type { BaseProps, IpynbType } from './types';
44
import type { MarkdownOptionsForMathjax } from './components/MarkdownForMathjax';
5-
import pkg from '../package.json';
65
import { Cell } from './components/Cell';
76
import { MarkdownForMathjax } from './components/MarkdownForMathjax';
87
import { defaultHtmlFilter } from './filters';
98
import { Context } from './context';
109

11-
console.debug(`react-ipynb-renderer@${pkg.version} is working.`);
12-
1310
export type Ipynb = IpynbType;
1411
export type Props = BaseProps & {
1512
markdownOptions?: MarkdownOptionsForMathjax;

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
},
2525
"exclude": [
2626
"node_modules",
27-
"*.stories.tsx"
27+
"*.stories.tsx",
28+
"*.spec.ts",
2829
],
2930
"include": [
3031
"**/*.ts",

0 commit comments

Comments
 (0)