You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ multi ./node_modules/@docusaurus/core/lib/client/clientEntry.js
71
+
Client bundle compiled with errors therefore further build is impossible.
72
+
```
73
+
74
+
3. Fix the issues - use the following bash script
75
+
```sh
76
+
# Escape all unescaped '>' characters except for the lines starting with "title:"
77
+
forfilein`find ./docs/api`;do
78
+
if [ -f"$file" ];then
79
+
mv "$file""$file.back"
80
+
sed -e '/^title:/n;s/\([^\\]\)\>/\1\\\>/g'"$file.back"&>"$file"
81
+
if [ $?-eq 0 ];then
82
+
rm "$file.back"
83
+
echo"fixed: $file"
84
+
else
85
+
mv "$file.back""$file"
86
+
echo"error: $file"
87
+
fi
88
+
fi
89
+
done
90
+
```
38
91
39
-
...
92
+
4. In the `docusaurus.config.js` and comment the line 9 with `'docusaurus-plugin-typedoc'` in the plugins array so that the building no longer runs typedoc on `bee-js`. Test the page with `npm run start` or `npm run build` and create PR with this updated API reference.
0 commit comments