@knime/scripting-editor 0.0.13 → 0.0.16

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.
@@ -1,7 +1,8 @@
1
1
  import ScriptingEditor from "../src/components/ScriptingEditor.vue";
2
2
  import CodeEditor from "../src/components/CodeEditor.vue";
3
3
  import OutputConsole from "../src/components/OutputConsole.vue";
4
+ import { EditorService } from "../src/editor-service";
4
5
  import { getScriptingService } from "../src/scripting-service";
5
6
  import type { NodeSettings, ScriptingServiceType } from "../src/scripting-service";
6
- export { ScriptingEditor, CodeEditor, OutputConsole, getScriptingService };
7
+ export { ScriptingEditor, CodeEditor, OutputConsole, getScriptingService, EditorService, };
7
8
  export type { NodeSettings, ScriptingServiceType };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.13",
4
+ "version": "0.0.16",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "author": "KNIME AG, Zurich, Switzerland",
7
7
  "license": "See the file license.txt",
@@ -21,7 +21,7 @@
21
21
  "ci:lint:css": "npm run lint:css -- -f json -o test-results/stylelint.json",
22
22
  "audit": "npm audit --omit dev",
23
23
  "coverage": "vitest run --coverage",
24
- "prepare": "cd .. && husky install ./org.knime.scripting.editor.js/.husky"
24
+ "install-husky": "cd .. && husky install ./org.knime.scripting.editor.js/.husky"
25
25
  },
26
26
  "dependencies": {
27
27
  "@knime/ui-extension-service": "0.16.0",