Skip to content

Commit

Permalink
chore: fix website included in build
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed Jan 17, 2024
1 parent 8e449ab commit c74dc8e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"inputs": [
"src/**",
"package.json",
"tsconfig.json",
"rollup.config.mjs",
"vite.config.ts"
"packages/**/src/**",
"packages/**/package.json",
"packages/**/tsconfig.json",
"packages/**/rollup.config.mjs",
"packages/**/vite.config.ts"
]
},
"build:api": {
Expand Down

3 comments on commit c74dc8e

@atomiks
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bsunderhus what's the right way to ignore the website/ dir? After I added it to the pnpm workspace, it started running its own build command. It doesn't seem like this works?

@bsunderhus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, this modification, doesn't look right, those paths are not supposed to be absolute.

You can create a turbo.json file exclusevely for website and override it's configuration, here's a reference to the docs.

I'd be happy to help with this if you open an issue and tag me along 😁

@atomiks
Copy link
Collaborator Author

@atomiks atomiks commented on c74dc8e Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, #2753

Tried a couple things but still didn't work. Your help would be appreciated 😄

Please sign in to comment.