@opendaw/lib-box 0.0.65 → 0.0.67
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/dist/pointer.js +1 -1
- package/package.json +4 -4
package/dist/pointer.js
CHANGED
|
@@ -138,7 +138,7 @@ export class PointerField extends Field {
|
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
140
|
else {
|
|
141
|
-
return panic(`Pointer
|
|
141
|
+
return panic(`Pointer at (${this.address}) has type mismatch. value (${value}) must be a string, but is ${typeof value}.`);
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
144
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendaw/lib-box",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.67",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"test": "vitest run"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@opendaw/lib-runtime": "^0.0.
|
|
27
|
-
"@opendaw/lib-std": "^0.0.
|
|
26
|
+
"@opendaw/lib-runtime": "^0.0.65",
|
|
27
|
+
"@opendaw/lib-std": "^0.0.65"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@opendaw/eslint-config": "^0.0.27",
|
|
31
31
|
"@opendaw/typescript-config": "^0.0.28"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "63d82cef8935683a8419bd146ba8da05c6034c08"
|
|
34
34
|
}
|