@kumologica/sdk 3.5.4 → 3.6.0-beta2
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.
- package/cli/commands/open.js +4 -2
- package/cli/commands/start.js +140 -0
- package/package.json +5 -5
- package/src/app/main-process/main-window.js +1 -0
- package/src/app/main-process/modal-home.js +1 -0
- package/src/app/main-process/modal-newproject.js +1 -0
- package/src/app/main-process/modal-newtab.js +1 -0
- package/src/app/main-process/modal-nodelibrary.js +1 -0
- package/src/app/main-process/modal-renameTab.js +1 -0
- package/src/app/main-process/modal-welcome.js +1 -0
- package/src/app/main.js +3 -1
- package/src/app/preload.js +0 -2
- package/src/app/ui/editor-client/public/red/style.min.css +1 -1
- package/src/app/ui/editor-client/public/vendor/ace-linters/javascript-service.js +10 -2
- package/src/app/ui/editor-client/src/sass/editor.scss +745 -746
- package/src/app/ui/editor-client/src/vendor/ace-linters/build/javascript-service.js +10 -2
- package/src/app/ui/editor-client/templates/index.mst +1 -1
- package/src/server/DesignerServer.js +152 -153
|
@@ -22470,7 +22470,7 @@ var require_acorn = __commonJS({
|
|
|
22470
22470
|
// (the latest version the library supports). This influences
|
|
22471
22471
|
// support for strict mode, the set of reserved words, and support
|
|
22472
22472
|
// for new syntax features.
|
|
22473
|
-
ecmaVersion: null,
|
|
22473
|
+
ecmaVersion: null,
|
|
22474
22474
|
// `sourceType` indicates the mode the code should be parsed in.
|
|
22475
22475
|
// Can be either `"script"` or `"module"`. This influences global
|
|
22476
22476
|
// strict mode and parsing of `import` and `export` declarations.
|
|
@@ -22618,7 +22618,12 @@ var require_acorn = __commonJS({
|
|
|
22618
22618
|
}
|
|
22619
22619
|
var BIND_NONE = 0, BIND_VAR = 1, BIND_LEXICAL = 2, BIND_FUNCTION = 3, BIND_SIMPLE_CATCH = 4, BIND_OUTSIDE = 5;
|
|
22620
22620
|
var Parser = function Parser2(options, input, startPos) {
|
|
22621
|
+
|
|
22622
|
+
|
|
22621
22623
|
this.options = options = getOptions(options);
|
|
22624
|
+
this.options.sourceType = "module"; // overrite by kumologica
|
|
22625
|
+
this.options.ecmaVersion = 2022;
|
|
22626
|
+
|
|
22622
22627
|
this.sourceFile = options.sourceFile;
|
|
22623
22628
|
this.keywords = wordsRegexp(keywords$1[options.ecmaVersion >= 6 ? 6 : options.sourceType === "module" ? "5module" : 5]);
|
|
22624
22629
|
var reserved = "";
|
|
@@ -85304,7 +85309,8 @@ var require_no_undef = __commonJS({
|
|
|
85304
85309
|
identifier.name === 'msg' ||
|
|
85305
85310
|
identifier.name ==='vars' ||
|
|
85306
85311
|
identifier.name === 'env' ||
|
|
85307
|
-
identifier.name === 'node'
|
|
85312
|
+
identifier.name === 'node'
|
|
85313
|
+
) return;
|
|
85308
85314
|
|
|
85309
85315
|
context.report({
|
|
85310
85316
|
node: identifier,
|
|
@@ -104042,6 +104048,8 @@ var require_linter = __commonJS({
|
|
|
104042
104048
|
nodeType: null
|
|
104043
104049
|
}
|
|
104044
104050
|
};
|
|
104051
|
+
|
|
104052
|
+
|
|
104045
104053
|
}
|
|
104046
104054
|
}
|
|
104047
104055
|
function createRuleListeners(rule, ruleContext) {
|