Skip to content

Commit

Permalink
chore: analytics src 폴더로 래핑
Browse files Browse the repository at this point in the history
  • Loading branch information
XionWCFM committed Dec 6, 2024
1 parent bc20af0 commit 78d7b57
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 6 deletions.
5 changes: 4 additions & 1 deletion packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "@repo/analytics",
"version": "0.0.0",
"private": true,
"main": "./index.tsx",
"main": "./src/index.tsx",
"exports": {
".": "./src/index.tsx"
},
"dependencies": {
"@next/third-parties": "^15.0.3",
"@repo/env": "workspace:*",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions packages/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"name": "@repo/env",
"version": "0.0.0",
"private": true,
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.11.1"
},
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/env/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"moduleResolution": "bundler",
"baseUrl": "."
},
"include": ["./*.ts", "./*.tsx"],
"include": ["./*.ts", "./*.tsx", "src/index.ts"],
"exclude": ["node_modules"]
}
4 changes: 3 additions & 1 deletion packages/mdx/src/MdxRemote.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { MDXRemote as RscMdxRemote } from "next-mdx-remote/rsc";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypePrettyCode from "rehype-pretty-code";
import rehypeSlug from "rehype-slug";
Expand All @@ -9,7 +10,8 @@ interface MdxRemoteProps {
}
export const MdxRemote = ({ source }: MdxRemoteProps) => {
return (
<rscmdxRemote
//@ts-ignore
<RscMdxRemote
source={source}
components={MdxComponents}
options={{
Expand Down
3 changes: 0 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 78d7b57

Please sign in to comment.