@bbn/bbn 1.0.11 → 1.0.12

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/bundle.d.ts CHANGED
@@ -8,10 +8,10 @@ declare module "fn/shuffle" {
8
8
  export { shuffle };
9
9
  }
10
10
  declare module "index" {
11
- const bbn: {
12
- fn: {
13
- shuffle: (array: any) => any;
14
- };
11
+ const env: {};
12
+ const vars: {};
13
+ const fn: {
14
+ shuffle: (array: any) => any;
15
15
  };
16
- export { bbn };
16
+ export { env, vars, fn };
17
17
  }
package/dist/bundle.js CHANGED
@@ -37,13 +37,15 @@ var bbn = (() => {
37
37
  define("index", ["require", "exports", "fn/shuffle"], function (require, exports, shuffle_js_1) {
38
38
  "use strict";
39
39
  Object.defineProperty(exports, "__esModule", { value: true });
40
- exports.bbn = void 0;
41
- const bbn = {
42
- fn: {
43
- shuffle: shuffle_js_1.shuffle
44
- }
40
+ exports.fn = exports.vars = exports.env = void 0;
41
+ const env = {};
42
+ exports.env = env;
43
+ const vars = {};
44
+ exports.vars = vars;
45
+ const fn = {
46
+ shuffle: shuffle_js_1.shuffle
45
47
  };
46
- exports.bbn = bbn;
48
+ exports.fn = fn;
47
49
  });
48
50
 
49
51
  'marker:resolver';
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
- import { shuffle } from './fn/shuffle.js';
2
- const env = {};
3
- const vars = {};
4
- const fn = {
5
- shuffle
1
+ import { shuffle } from './fn/shuffle';
2
+ const bbn = {
3
+ fn: {
4
+ shuffle
5
+ }
6
6
  };
7
- export {env, vars, fn};
7
+ export { bbn };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",