mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
Fixed uneeded changes
This commit is contained in:
parent
9d40d17731
commit
37d64d9e76
@ -18,6 +18,7 @@ plugins:
|
|||||||
- "@typescript-eslint"
|
- "@typescript-eslint"
|
||||||
- "prettier"
|
- "prettier"
|
||||||
rules:
|
rules:
|
||||||
|
prettier/prettier: error
|
||||||
no-undef: off
|
no-undef: off
|
||||||
no-unused-vars: off
|
no-unused-vars: off
|
||||||
no-prototype-builtins: off
|
no-prototype-builtins: off
|
||||||
|
7
.gitignore
vendored
7
.gitignore
vendored
@ -51,10 +51,3 @@ tmp_standalone_files
|
|||||||
config.local
|
config.local
|
||||||
config.local.js
|
config.local.js
|
||||||
.DS_Store
|
.DS_Store
|
||||||
gulp/package-lock.json
|
|
||||||
gulp/yarn.lock
|
|
||||||
package-lock.json
|
|
||||||
yarn.lock
|
|
||||||
modloader/runnable-texturepacker.jar
|
|
||||||
modloader/modloader.rar
|
|
||||||
modloader/atlas/
|
|
||||||
|
@ -131,7 +131,8 @@ All assets will be automatically rebuilt into the atlas once changed (Thanks to
|
|||||||
|
|
||||||
<img src="https://i.imgur.com/W25Fkl0.png" alt="shapez.io Screenshot">
|
<img src="https://i.imgur.com/W25Fkl0.png" alt="shapez.io Screenshot">
|
||||||
|
|
||||||
For generating docs:
|
### Generating documentation:
|
||||||
npm run esdoc
|
|
||||||
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)
|
||||||
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
|
||||||
|
@ -111,7 +111,6 @@ export class Application {
|
|||||||
// Store the mouse position, or null if not available
|
// Store the mouse position, or null if not available
|
||||||
/** @type {Vector|null} */
|
/** @type {Vector|null} */
|
||||||
this.mousePosition = null;
|
this.mousePosition = null;
|
||||||
this.onAboutClicked = undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user