Skip to content

Commit 8c1cada

Browse files
Merge pull request #575 from Tekunda/master
2 parents 740d0af + 3e1bd96 commit 8c1cada

File tree

7 files changed

+5
-2
lines changed

7 files changed

+5
-2
lines changed

examples/full/components/NotionPage.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ export function NotionPage({
100100
}
101101

102102
const title = getPageTitle(recordMap)
103-
console.log(title, recordMap)
104103

105104
// useful for debugging from the dev console
106105
if (typeof window !== 'undefined') {

examples/minimal/components/NotionPage.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export function NotionPage({
1515
}
1616

1717
const title = getPageTitle(recordMap)
18-
console.log(title, recordMap)
1918

2019
return (
2120
<>

packages/notion-client/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
},
1919
"scripts": {
2020
"build": "tsup",
21+
"dev": "tsup --watch",
2122
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
2223
"clean": "del build",
2324
"test": "run-s test:*",

packages/notion-compat/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
},
1919
"scripts": {
2020
"build": "tsup",
21+
"dev": "tsup --watch",
2122
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
2223
"clean": "del build",
2324
"test": "run-s test:*",

packages/notion-types/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
},
1919
"scripts": {
2020
"build": "tsup",
21+
"dev": "tsup --watch",
2122
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
2223
"clean": "del build",
2324
"test": "run-s test:*",

packages/notion-utils/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
},
2525
"scripts": {
2626
"build": "tsup",
27+
"dev": "tsup --watch",
2728
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
2829
"clean": "del build",
2930
"test": "run-s test:*",

packages/react-notion-x/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
},
4848
"scripts": {
4949
"build": "tsup",
50+
"dev": "tsup --watch",
5051
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
5152
"clean": "del build",
5253
"test": "run-s test:*",

0 commit comments

Comments
 (0)