Skip to content

Commit

Permalink
Set types and remove explicit access setting (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Mar 3, 2024
1 parent 0d79133 commit 47156dc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/beige-feet-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"markdownlayer": patch
---

Set types and remove explicit access setting
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"cSpell.words": [
"copyfiles",
"estree",
"frontmatter",
"headlessui",
"lucide",
Expand All @@ -11,6 +13,7 @@
"Pluggable",
"recma",
"rehype",
"tailwindcss"
"tailwindcss",
"tsup"
]
}
1 change: 0 additions & 1 deletion examples/starter/src/app/blog/changelog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ export const metadata: Metadata = {
export default async function Changelog() {
const entries = allChangelogs.sort((a, b) => b.published.localeCompare(a.published));

// TODO: implement changelog page design here
return <></>;
}
4 changes: 2 additions & 2 deletions packages/markdownlayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.1",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down Expand Up @@ -104,7 +105,6 @@
"node": ">=18"
},
"publishConfig": {
"directory": "dist",
"access": "public"
"directory": "dist"
}
}

0 comments on commit 47156dc

Please sign in to comment.