@stacks/storage 3.2.0 → 3.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacks/storage",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Stacks storage library",
5
5
  "author": "yknl <yukanliao@gmail.com>",
6
6
  "homepage": "https://blockstack.org",
@@ -15,14 +15,16 @@
15
15
  },
16
16
  "scripts": {
17
17
  "start": "tsc -b tsconfig.build.json --watch --verbose",
18
- "build": "npm run clean && npm run build:cjs && npm run build:esm",
18
+ "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill",
19
19
  "build:cjs": "tsc -b tsconfig.build.json",
20
20
  "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
21
21
  "build:umd": "webpack --config webpack.config.js",
22
+ "build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
22
23
  "clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
23
24
  "typecheck": "tsc --noEmit",
24
25
  "typecheck:watch": "npm run typecheck -- --watch",
25
- "prepublishOnly": "npm run test && npm run build && npm run build:umd",
26
+ "pack": "npm pack",
27
+ "prepublishOnly": "npm run test && npm run build",
26
28
  "test": "jest",
27
29
  "test:watch": "jest --watch --coverage=false"
28
30
  },
@@ -30,9 +32,9 @@
30
32
  "url": "https://github.com/blockstack/blockstack.js/issues"
31
33
  },
32
34
  "dependencies": {
33
- "@stacks/auth": "^3.2.0",
34
- "@stacks/common": "^3.0.0",
35
- "@stacks/encryption": "^3.0.0",
35
+ "@stacks/auth": "^3.3.0",
36
+ "@stacks/common": "^3.3.0",
37
+ "@stacks/encryption": "^3.3.0",
36
38
  "bitcoinjs-lib": "^5.2.0",
37
39
  "jsontokens": "^3.0.0"
38
40
  },
@@ -43,18 +45,22 @@
43
45
  "jest-fetch-mock": "^3.0.3",
44
46
  "jest-module-name-mapper": "^0.1.5",
45
47
  "jsdom": "^16.5.3",
48
+ "process": "^0.11.10",
46
49
  "rimraf": "^3.0.2",
50
+ "stream-browserify": "^3.0.0",
47
51
  "ts-jest": "^26.5.5",
48
52
  "ts-loader": "^9.1.1",
49
53
  "typescript": "^4.2.4",
50
54
  "webpack": "^5.36.1",
55
+ "webpack-bundle-analyzer": "^4.5.0",
51
56
  "webpack-cli": "^4.6.0"
52
57
  },
53
58
  "sideEffects": false,
59
+ "typings": "dist/index.d.ts",
54
60
  "main": "dist/index.js",
55
61
  "module": "dist/esm/index.js",
56
- "typings": "dist/index.d.ts",
57
- "umd:main": "dist/index.umd.js",
58
- "unpkg": "dist/index.umd.js",
59
- "gitHead": "cfabdf8a48269e35e72f5e558fc722a55da02a5e"
62
+ "browser": "dist/polyfill/index.js",
63
+ "umd:main": "dist/umd/index.js",
64
+ "unpkg": "dist/umd/index.js",
65
+ "gitHead": "d56ab59078eb2657128e33db3d2961a8cdf7d8e0"
60
66
  }
package/CHANGELOG.md DELETED
@@ -1,73 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.2.0](https://github.com/blockstack/blockstack.js/compare/v3.1.1...v3.2.0) (2022-02-02)
7
-
8
- **Note:** Version bump only for package @stacks/storage
9
-
10
-
11
-
12
-
13
-
14
- # [3.1.0](https://github.com/blockstack/blockstack.js/compare/v3.0.0...v3.1.0) (2021-12-16)
15
-
16
- **Note:** Version bump only for package @stacks/storage
17
-
18
-
19
-
20
-
21
-
22
- ## [2.0.1](https://github.com/blockstack/blockstack.js/compare/v2.0.1-beta.2...v2.0.1) (2021-08-09)
23
-
24
- **Note:** Version bump only for package @stacks/storage
25
-
26
-
27
-
28
-
29
-
30
- ## [2.0.1-beta.2](https://github.com/blockstack/blockstack.js/compare/v2.0.1-beta.1...v2.0.1-beta.2) (2021-08-06)
31
-
32
-
33
- ### Bug Fixes
34
-
35
- * fix coreNode error when fetching public data with no user session ([144754b](https://github.com/blockstack/blockstack.js/commit/144754b80f05bff1a4656be87d4ab09b4076d37c))
36
-
37
-
38
-
39
-
40
-
41
- ## [2.0.1-beta.1](https://github.com/blockstack/blockstack.js/compare/v2.0.0-beta.1...v2.0.1-beta.1) (2021-07-26)
42
-
43
-
44
- ### Features
45
-
46
- * refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
47
-
48
-
49
-
50
-
51
-
52
- # [2.0.0-beta.2](https://github.com/blockstack/blockstack.js/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2021-07-26)
53
-
54
-
55
- ### Features
56
-
57
- * refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
58
-
59
-
60
-
61
-
62
-
63
- ## [1.3.3](https://github.com/blockstack/blockstack.js/compare/v1.3.2...v1.3.3) (2021-03-18)
64
-
65
- **Note:** Version bump only for package @stacks/storage
66
-
67
-
68
-
69
-
70
-
71
- ## [1.2.3](https://github.com/blockstack/blockstack.js/compare/v1.2.2...v1.2.3) (2021-02-25)
72
-
73
- **Note:** Version bump only for package @stacks/storage