nodoku-core 0.1.5 → 0.1.7

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.
@@ -188,6 +188,6 @@ async function renderSingleComponent(rowIndex, componentIndex, component, blocks
188
188
  // console.log("start rendering page with props", props);
189
189
  const res = await component(props);
190
190
  // console.log("end rendering page with props", props);
191
- return res;
191
+ return <div className={"nd-component-holder"} style={{ minWidth: 0 }}>{res}</div>;
192
192
  }
193
193
  export { RenderingPage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodoku-core",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "basic foundation for nodoku static site generator",
5
5
  "exports": {
6
6
  ".": {
@@ -39,7 +39,6 @@
39
39
  "@types/react": "^18.3.3",
40
40
  "@types/react-dom": "^18.3.0",
41
41
  "eslint": "^8.56.0",
42
- "eslint-config-next": "14.2.3",
43
42
  "react": "^18.3.1",
44
43
  "react-dom": "^18.3.1",
45
44
  "typescript": "^5.5.3",