@next-md-blog/core 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,10 +14,18 @@ Peers: `next@^16`, `react@^19`, `react-dom@^19`.
14
14
 
15
15
  - **Published docs:** [https://www.next-md-blog.com](https://www.next-md-blog.com)
16
16
  - **Live demos:** [demo.next-md-blog.com](https://demo.next-md-blog.com) (single locale) · [demo.i18n.next-md-blog.com](https://demo.i18n.next-md-blog.com) (i18n)
17
- - **Vercel:** single locale [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Ftemplate) · i18n [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Ftemplate-i18n)
17
+ - **Vercel:** single locale [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Fnext-md-blog%2Ftree%2Fmain%2Ftemplates%2Fsingle%2F) · i18n [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnext-md-blog%2Fnext-md-blog%2Ftree%2Fmain%2Ftemplates%2Fi18n)
18
18
  - **Source & issues:** [github.com/next-md-blog/next-md-blog](https://github.com/next-md-blog/next-md-blog)
19
19
 
20
- To build the docs locally, clone the monorepo, run `pnpm install && pnpm dev:docs`, and open [http://localhost:5101](http://localhost:5101).
20
+ To build the docs locally:
21
+
22
+ ```bash
23
+ git clone https://github.com/next-md-blog/next-md-blog.git
24
+ cd next-md-blog
25
+ pnpm install && pnpm dev:docs
26
+ ```
27
+
28
+ Then open [http://localhost:5101](http://localhost:5101).
21
29
 
22
30
  Entry points in the repo: [Home / overview](https://github.com/next-md-blog/next-md-blog/blob/main/docs/content/index.mdx), [API reference](https://github.com/next-md-blog/next-md-blog/blob/main/docs/content/api-reference.mdx).
23
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-md-blog/core",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A React library for parsing and displaying markdown blog posts in Next.js",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",