Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed pnpm dev #575

Merged
merged 1 commit into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/full/components/NotionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ export function NotionPage({
}

const title = getPageTitle(recordMap)
console.log(title, recordMap)

// useful for debugging from the dev console
if (typeof window !== 'undefined') {
Expand Down
1 change: 0 additions & 1 deletion examples/minimal/components/NotionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export function NotionPage({
}

const title = getPageTitle(recordMap)
console.log(title, recordMap)

return (
<>
Expand Down
1 change: 1 addition & 0 deletions packages/notion-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
Expand Down
1 change: 1 addition & 0 deletions packages/notion-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
Expand Down
1 change: 1 addition & 0 deletions packages/notion-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
Expand Down
1 change: 1 addition & 0 deletions packages/notion-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
Expand Down
1 change: 1 addition & 0 deletions packages/react-notion-x/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"watch": "tsup --watch --silent --onSuccess 'echo build successful'",
"clean": "del build",
"test": "run-s test:*",
Expand Down