This commit is contained in:
Jiiks 2019-02-28 09:48:45 +02:00
parent 806ca5028a
commit 97519b2307
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ export default class Module {
args
};
this.setState = this.setState.bind(this);
if (this.delay) { // If delay is set then module is set to load delayed from modulemanager
this.initialize = this.initialize.bind(this);
this.init = this.initialize;

View File

@ -85,7 +85,7 @@
"watch_csseditor": "npm run watch --prefix csseditor",
"build_editor": "npm run build --prefix editor",
"watch_editor": "npm run watch --prefix editor",
"lint": "eslint -f unix client/src core/src csseditor/src common && npm run sasslint",
"lint": "eslint -f unix client/src core/src editor/src common && npm run sasslint",
"lint_fix": "eslint -f unix client/src core/src csseditor/src common --fix",
"sasslint": "sass-lint client/src/styles/**/*.scss -v",
"test": "npm run build && npm run lint",