@webqit/oohtml 4.1.1-debug.4 → 4.1.1-debug.5

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/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "wicg-proposal"
15
15
  ],
16
16
  "homepage": "https://webqit.io/tooling/oohtml",
17
- "version": "4.1.1-debug.4",
17
+ "version": "4.1.1-debug.5",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -58,6 +58,7 @@ function exposeAPIs( config ) {
58
58
 
59
59
  // Script runner
60
60
  async function execute( config, execHash ) {
61
+ console.log('//........', execHash);
61
62
  const window = this, { realdom } = window.webqit;
62
63
  const exec = _fromHash( execHash );
63
64
  if ( !exec ) throw new Error( `Argument must be a valid exec hash.` );
@@ -68,7 +69,9 @@ async function execute( config, execHash ) {
68
69
  } else if ( config.script.retention === 'dispose' ) {
69
70
  script.textContent = `"source hidden"`;
70
71
  } else {
72
+ console.log('//........1');
71
73
  script.textContent = await compiledScript.toString();
74
+ console.log('//........2');
72
75
  }
73
76
  // Execute and save state
74
77
  const documentRoot = script.getRootNode();