scratch-sb1-converter 0.2.7 → 0.2.8
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/.husky/.gitattributes +1 -0
- package/.husky/commit-msg +4 -0
- package/.nvmrc +1 -0
- package/CHANGELOG.md +11 -0
- package/README.md +18 -1
- package/commitlint.config.js +4 -1
- package/pack/scratch-sb1-converter-0.2.8.tgz +0 -0
- package/package.json +32 -34
- package/playground/main.js +30 -30
- package/playground/view.js +39 -39
- package/release.config.js +14 -0
- package/renovate.json5 +7 -0
- package/src/coders/deflate-stream.js +0 -1
- package/src/coders/proxy-stream.js +0 -2
- package/src/squeak/byte-primitives.js +0 -1
package/renovate.json5
ADDED
|
@@ -9,7 +9,6 @@ class ProxyStream {
|
|
|
9
9
|
|
|
10
10
|
set uint8a (value) {
|
|
11
11
|
this.stream.uint8a = value;
|
|
12
|
-
return this.stream.uint8a;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
get position () {
|
|
@@ -18,7 +17,6 @@ class ProxyStream {
|
|
|
18
17
|
|
|
19
18
|
set position (value) {
|
|
20
19
|
this.stream.position = value;
|
|
21
|
-
return this.stream.position;
|
|
22
20
|
}
|
|
23
21
|
|
|
24
22
|
writeStruct (StructType, data) {
|