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.
@@ -0,0 +1,14 @@
1
+ module.exports = {
2
+ extends: 'scratch-semantic-release-config',
3
+ branches: [
4
+ {
5
+ name: 'develop'
6
+ // default channel
7
+ },
8
+ {
9
+ name: 'hotfix/*',
10
+ channel: 'hotfix',
11
+ prerelease: 'hotfix'
12
+ }
13
+ ]
14
+ };
package/renovate.json5 ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "github>scratchfoundation/scratch-renovate-config:js-lib-bundled"
5
+ ],
6
+ "baseBranches": ["develop"]
7
+ }
@@ -27,7 +27,6 @@ class DeflateStream extends ProxyStream {
27
27
  set _deflateIndex (value) {
28
28
  this.chunk.length = value;
29
29
  this.chunk.lengthCheck = value ^ 0xffff;
30
- return this.chunk.length;
31
30
  }
32
31
 
33
32
  writeStruct (StructType, data) {
@@ -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) {
@@ -138,7 +138,6 @@ const Bitmap32BE = new BytePrimitive({
138
138
  });
139
139
 
140
140
  let decoder;
141
- /* global TextDecoder:true */
142
141
  if (typeof TextDecoder === 'undefined') {
143
142
  decoder = new JSTextDecoder();
144
143
  } else {