@dittolive/ditto 3.0.6-experimental.node-loading-issues.linux-x64.1 → 3.0.6-experimental.node-loading-issues.2.linux-x64
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/README.md +2 -2
- package/node/ditto.cjs.js +1 -1
- package/node/ditto.cjs.js.map +1 -1
- package/node/ditto.cjs.pretty.js +2 -2
- package/node/ditto.cjs.pretty.js.map +1 -1
- package/package.json +1 -1
- package/web/ditto.es6.js +1 -1
- package/web/ditto.es6.pretty.js +2 -2
- package/web/ditto.umd.js +1 -1
- package/web/ditto.umd.pretty.js +2 -2
package/node/ditto.cjs.pretty.js
CHANGED
|
@@ -323,7 +323,7 @@ const ditto = function() {
|
|
|
323
323
|
if (target === "linux-arm") return require('./ditto.linux-arm.node')
|
|
324
324
|
if (target === "win32-x64") return require('./ditto.win32-x64.node')
|
|
325
325
|
} catch (error) {
|
|
326
|
-
throw new Error("Couldn't load native module 'ditto." + target + ".node' due to error
|
|
326
|
+
throw new Error("Couldn't load native module 'ditto." + target + ".node' due to error:" + error.toString())
|
|
327
327
|
}
|
|
328
328
|
|
|
329
329
|
throw new Error("No native module 'ditto." + target + ".node' found.")
|
|
@@ -1434,7 +1434,7 @@ function awdlDestroy(awdl) {
|
|
|
1434
1434
|
|
|
1435
1435
|
// NOTE: this is patched up with the actual build version by Jake task
|
|
1436
1436
|
// build:package and has to be a valid semantic version as defined here: https://semver.org.
|
|
1437
|
-
const fullBuildVersionString = '3.0.6-experimental.node-loading-issues.linux-x64
|
|
1437
|
+
const fullBuildVersionString = '3.0.6-experimental.node-loading-issues.2.linux-x64';
|
|
1438
1438
|
|
|
1439
1439
|
//
|
|
1440
1440
|
/**
|