@stacks/storage 3.1.0 → 3.2.1-beta.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.1.0",
3
+ "version": "3.2.1-beta.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.1.0",
34
- "@stacks/common": "^3.0.0",
35
- "@stacks/encryption": "^3.0.0",
35
+ "@stacks/auth": "^3.2.1-beta.0",
36
+ "@stacks/common": "^3.2.1-beta.0",
37
+ "@stacks/encryption": "^3.2.1-beta.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": "b9962ea73ea8948a07d6792eacc2a3b0d16309a1"
62
+ "browser": "dist/polyfill/index.js",
63
+ "umd:main": "dist/umd/index.js",
64
+ "unpkg": "dist/umd/index.js",
65
+ "gitHead": "bf5692b4b8eade0bc390b149bd6f7aafdda24f2d"
60
66
  }
package/CHANGELOG.md DELETED
@@ -1,65 +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.1.0](https://github.com/blockstack/blockstack.js/compare/v3.0.0...v3.1.0) (2021-12-16)
7
-
8
- **Note:** Version bump only for package @stacks/storage
9
-
10
-
11
-
12
-
13
-
14
- ## [2.0.1](https://github.com/blockstack/blockstack.js/compare/v2.0.1-beta.2...v2.0.1) (2021-08-09)
15
-
16
- **Note:** Version bump only for package @stacks/storage
17
-
18
-
19
-
20
-
21
-
22
- ## [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)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * fix coreNode error when fetching public data with no user session ([144754b](https://github.com/blockstack/blockstack.js/commit/144754b80f05bff1a4656be87d4ab09b4076d37c))
28
-
29
-
30
-
31
-
32
-
33
- ## [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)
34
-
35
-
36
- ### Features
37
-
38
- * refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
39
-
40
-
41
-
42
-
43
-
44
- # [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)
45
-
46
-
47
- ### Features
48
-
49
- * refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
50
-
51
-
52
-
53
-
54
-
55
- ## [1.3.3](https://github.com/blockstack/blockstack.js/compare/v1.3.2...v1.3.3) (2021-03-18)
56
-
57
- **Note:** Version bump only for package @stacks/storage
58
-
59
-
60
-
61
-
62
-
63
- ## [1.2.3](https://github.com/blockstack/blockstack.js/compare/v1.2.2...v1.2.3) (2021-02-25)
64
-
65
- **Note:** Version bump only for package @stacks/storage