1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

Merge branch 'modloader' of https://github.com/DJ1TJOO/shapez.io into modloader

This commit is contained in:
DJ1TJOO 2021-03-02 13:50:12 +01:00
commit f61ba6fec9

View File

@ -133,6 +133,6 @@ All assets will be automatically rebuilt into the atlas once changed (Thanks to
### Generating documentation: ### Generating documentation:
1. Replace name.replace('\*', '\\\\\*') with name.replace('\*', '\\\\\*').replace('[', '\\\\[').replace(']', '\\\\]').replace('(', '\\\\(').replace(')', '\\\\)') in node_modules\esdoc-publish-html-plugin\out\src\Builder\DocBuilder.js:116:20) 1. Replace `name.replace('*', '\\*')` with `name.replace('*', '\\*').replace('[', '\\[').replace(']', '\\]').replace('(', '\\(').replace(')', '\\)')` in node_modules\esdoc-publish-html-plugin\out\src\Builder\DocBuilder.js:116:20)
2. Replace autoPrivate && doc.name.charAt(0) === '\_' with autoPrivate && doc.name && doc.name.charAt(0) === '\_' in node_modules\esdoc-accessor-plugin\src\Plugin.js:16 2. Replace `autoPrivate && doc.name.charAt(0) === '\_'` with `autoPrivate && doc.name && doc.name.charAt(0) === '\_'` in node_modules\esdoc-accessor-plugin\src\Plugin.js:16
3. npm run esdoc 3. npm run esdoc