@farming-labs/next 0.1.124 → 0.1.126
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.
package/dist/config.mjs
CHANGED
|
@@ -215,6 +215,7 @@ function createDocsWorkspaceAliases() {
|
|
|
215
215
|
"@farming-labs/next/layout": "./packages/next/src/layout.tsx",
|
|
216
216
|
"@farming-labs/next/mdx-plugins/rehype-code": "./packages/next/src/mdx-plugins/rehype-code.ts",
|
|
217
217
|
"@farming-labs/next/mdx-plugins/rehype-toc": "./packages/next/src/mdx-plugins/rehype-toc.ts",
|
|
218
|
+
"@farming-labs/next/mdx-plugins/remark-code-group": "./packages/next/src/mdx-plugins/remark-code-group.ts",
|
|
218
219
|
"@farming-labs/next/mdx-plugins/remark-heading": "./packages/next/src/mdx-plugins/remark-heading.ts",
|
|
219
220
|
"@farming-labs/next/mdx-plugins/remark-og": "./packages/next/src/mdx-plugins/remark-og.ts",
|
|
220
221
|
"@farming-labs/next/mdx-plugins/remark-markdown-alternate": "./packages/next/src/mdx-plugins/remark-markdown-alternate.ts",
|
|
@@ -1459,7 +1460,7 @@ function withDocs(nextConfig = {}) {
|
|
|
1459
1460
|
docsPath,
|
|
1460
1461
|
enabled: !isStaticExport
|
|
1461
1462
|
}]);
|
|
1462
|
-
remarkPlugins.push(["remark-mdx-frontmatter", { name: "metadata" }], "@farming-labs/next/mdx-plugins/remark-heading");
|
|
1463
|
+
remarkPlugins.push(["remark-mdx-frontmatter", { name: "metadata" }], "@farming-labs/next/mdx-plugins/remark-code-group", "@farming-labs/next/mdx-plugins/remark-heading");
|
|
1463
1464
|
const withMDX = createMDX({
|
|
1464
1465
|
extension: /\.mdx?$/,
|
|
1465
1466
|
options: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@farming-labs/next",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.126",
|
|
4
4
|
"description": "Next.js adapter for @farming-labs/docs — MDX config wrapper",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"docs",
|
|
@@ -59,6 +59,11 @@
|
|
|
59
59
|
"import": "./dist/mdx-plugins/remark-heading.mjs",
|
|
60
60
|
"default": "./dist/mdx-plugins/remark-heading.mjs"
|
|
61
61
|
},
|
|
62
|
+
"./mdx-plugins/remark-code-group": {
|
|
63
|
+
"types": "./dist/mdx-plugins/remark-code-group.d.mts",
|
|
64
|
+
"import": "./dist/mdx-plugins/remark-code-group.mjs",
|
|
65
|
+
"default": "./dist/mdx-plugins/remark-code-group.mjs"
|
|
66
|
+
},
|
|
62
67
|
"./mdx-plugins/rehype-toc": {
|
|
63
68
|
"types": "./dist/mdx-plugins/rehype-toc.d.mts",
|
|
64
69
|
"import": "./dist/mdx-plugins/rehype-toc.mjs",
|
|
@@ -100,8 +105,8 @@
|
|
|
100
105
|
"tsdown": "^0.20.3",
|
|
101
106
|
"typescript": "^5.9.3",
|
|
102
107
|
"vitest": "^3.2.4",
|
|
103
|
-
"@farming-labs/theme": "0.1.
|
|
104
|
-
"@farming-labs/docs": "0.1.
|
|
108
|
+
"@farming-labs/theme": "0.1.126",
|
|
109
|
+
"@farming-labs/docs": "0.1.126"
|
|
105
110
|
},
|
|
106
111
|
"peerDependencies": {
|
|
107
112
|
"@farming-labs/docs": ">=0.0.1",
|