@xylabs/buffer 2.6.3 → 2.6.4

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/.depcheckrc CHANGED
@@ -1,3 +1,4 @@
1
1
  ignores: [
2
- "buffer"
2
+ "buffer",
3
+ "@xylabs/tsconfig-dom"
3
4
  ]
package/README.md CHANGED
@@ -39,7 +39,8 @@ yarn add @xylabs/sdk-js
39
39
 
40
40
  ## Scripts
41
41
 
42
- See [ts-scripts](https://github.com/xylabs/ts-scripts/blob/main/README.md) for list of shared scripts.
42
+ See [ts-scripts](https://github.com/xylabs/ts-scripts/blob/main/README.md)
43
+ for list of shared scripts.
43
44
 
44
45
  ## Maintainers
45
46
 
package/dist/docs.json CHANGED
@@ -5,12 +5,101 @@
5
5
  "kindString": "Project",
6
6
  "flags": {},
7
7
  "originalName": "",
8
+ "children": [
9
+ {
10
+ "id": 3,
11
+ "name": "bufferPolyfillBrowser",
12
+ "kind": 8388608,
13
+ "kindString": "Reference",
14
+ "flags": {},
15
+ "sources": [
16
+ {
17
+ "fileName": "browser/bufferPolyfill.ts",
18
+ "line": 3,
19
+ "character": 13,
20
+ "url": "https://github.com/xylabs/sdk-js/blob/ff7d0bd/packages/buffer/src/browser/bufferPolyfill.ts#L3"
21
+ }
22
+ ],
23
+ "target": 1
24
+ },
25
+ {
26
+ "id": 1,
27
+ "name": "bufferPolyfill",
28
+ "kind": 64,
29
+ "kindString": "Function",
30
+ "flags": {},
31
+ "sources": [
32
+ {
33
+ "fileName": "browser/bufferPolyfill.ts",
34
+ "line": 3,
35
+ "character": 13,
36
+ "url": "https://github.com/xylabs/sdk-js/blob/ff7d0bd/packages/buffer/src/browser/bufferPolyfill.ts#L3"
37
+ }
38
+ ],
39
+ "signatures": [
40
+ {
41
+ "id": 2,
42
+ "name": "bufferPolyfill",
43
+ "kind": 4096,
44
+ "kindString": "Call signature",
45
+ "flags": {},
46
+ "type": {
47
+ "type": "intrinsic",
48
+ "name": "void"
49
+ }
50
+ }
51
+ ]
52
+ },
53
+ {
54
+ "id": 4,
55
+ "name": "bufferPolyfillNode",
56
+ "kind": 64,
57
+ "kindString": "Function",
58
+ "flags": {},
59
+ "sources": [
60
+ {
61
+ "fileName": "node/bufferPolyfill.ts",
62
+ "line": 1,
63
+ "character": 13,
64
+ "url": "https://github.com/xylabs/sdk-js/blob/ff7d0bd/packages/buffer/src/node/bufferPolyfill.ts#L1"
65
+ }
66
+ ],
67
+ "signatures": [
68
+ {
69
+ "id": 5,
70
+ "name": "bufferPolyfillNode",
71
+ "kind": 4096,
72
+ "kindString": "Call signature",
73
+ "flags": {},
74
+ "type": {
75
+ "type": "intrinsic",
76
+ "name": "void"
77
+ }
78
+ }
79
+ ]
80
+ }
81
+ ],
82
+ "groups": [
83
+ {
84
+ "title": "References",
85
+ "children": [
86
+ 3
87
+ ]
88
+ },
89
+ {
90
+ "title": "Functions",
91
+ "children": [
92
+ 1,
93
+ 4
94
+ ]
95
+ }
96
+ ],
8
97
  "sources": [
9
98
  {
10
99
  "fileName": "index.ts",
11
100
  "line": 1,
12
101
  "character": 0,
13
- "url": "https://github.com/xylabs/sdk-js/blob/175eeaf/packages/buffer/src/index.ts#L1"
102
+ "url": "https://github.com/xylabs/sdk-js/blob/ff7d0bd/packages/buffer/src/index.ts#L1"
14
103
  }
15
104
  ]
16
105
  }
package/package.json CHANGED
@@ -10,9 +10,6 @@
10
10
  "email": "support@xylabs.com",
11
11
  "url": "https://github.com/xylabs/sdk-js/issues"
12
12
  },
13
- "workspaces": [
14
- "packages/*"
15
- ],
16
13
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
17
14
  "browser": "dist/esm/browserIndex.js",
18
15
  "main": "dist/cjs/index.js",
@@ -44,11 +41,12 @@
44
41
  "esm"
45
42
  ],
46
43
  "dependencies": {
47
- "buffer": "^6.0.3"
44
+ "buffer": "^6.0.3",
45
+ "tslib": "^2.4.0"
48
46
  },
49
47
  "devDependencies": {
50
- "@types/node": "^18.6.3",
51
- "@xylabs/tsconfig-dom": "^2.5.13"
48
+ "@types/node": "^18.6.5",
49
+ "@xylabs/tsconfig-dom": "^2.5.75"
52
50
  },
53
51
  "publishConfig": {
54
52
  "access": "public"
@@ -61,5 +59,5 @@
61
59
  "uuid": "^8"
62
60
  },
63
61
  "sideEffects": false,
64
- "version": "2.6.3"
62
+ "version": "2.6.4"
65
63
  }