@artisan-commerce/builders 0.7.0-canary.20 → 0.7.0-canary.22

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/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.0-canary.22](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.21...@artisan-commerce/builders@0.7.0-canary.22) (2021-10-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **global:** fix aritsn-rn package ([b18d632](https://bitbucket.org/tradesystem/artisn_sdk/commit/b18d632d539bf1e748c1d5f83e4bc73747a7e467))
12
+
13
+
14
+
15
+ ## [0.7.0-canary.21](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.20...@artisan-commerce/builders@0.7.0-canary.21) (2021-10-14)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **global:** make export not module by default ([4e701b1](https://bitbucket.org/tradesystem/artisn_sdk/commit/4e701b1b59df89cf8358cf500984b1c2c4f42c60))
21
+
22
+
23
+
6
24
  ## [0.7.0-canary.20](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.19...@artisan-commerce/builders@0.7.0-canary.20) (2021-10-14)
7
25
 
8
26
 
@@ -2,6 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
+ var buffer = require('buffer');
6
+
5
7
  const genItems = (builder, quantity) => {
6
8
  const num = quantity != null ? quantity : Math.floor(Math.random() * 9) + 1;
7
9
  const items = [];
@@ -88170,15 +88172,15 @@ var btoa$1 = {exports: {}};
88170
88172
  (function () {
88171
88173
 
88172
88174
  function btoa(str) {
88173
- var buffer;
88175
+ var buffer$1;
88174
88176
 
88175
- if (str instanceof Buffer) {
88176
- buffer = str;
88177
+ if (str instanceof buffer.Buffer) {
88178
+ buffer$1 = str;
88177
88179
  } else {
88178
- buffer = Buffer.from(str.toString(), 'binary');
88180
+ buffer$1 = buffer.Buffer.from(str.toString(), 'binary');
88179
88181
  }
88180
88182
 
88181
- return buffer.toString('base64');
88183
+ return buffer$1.toString('base64');
88182
88184
  }
88183
88185
 
88184
88186
  btoa$1.exports = btoa;