@artisan-commerce/builders 0.7.0-canary.21 → 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 +9 -0
- package/dist/bundle.cjs.js +7 -5
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +2 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +9 -9
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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
|
+
|
|
6
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)
|
|
7
16
|
|
|
8
17
|
|
package/dist/bundle.cjs.js
CHANGED
|
@@ -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;
|