Skip to content

Commit

Permalink
fixed pnpm dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rimonhanna committed Nov 2, 2024
1 parent 740d0af commit 3e1bd96
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 2 deletions.
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

0 comments on commit 3e1bd96

Please sign in to comment.