@stacks/network 3.3.0 → 3.5.0-beta.1

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/network",
3
- "version": "3.3.0",
3
+ "version": "3.5.0-beta.1",
4
4
  "description": "Library for Stacks network operations",
5
5
  "keywords": [
6
6
  "stacks",
@@ -26,13 +26,13 @@
26
26
  "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill",
27
27
  "build:cjs": "tsc -b tsconfig.build.json",
28
28
  "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
29
- "build:umd": "webpack --config webpack.config.js",
29
+ "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js",
30
30
  "build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
31
31
  "clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
32
32
  "typecheck": "tsc --noEmit",
33
33
  "typecheck:watch": "npm run typecheck -- --watch",
34
34
  "pack": "npm pack",
35
- "prepublishOnly": "npm run test && npm run build",
35
+ "prepublishOnly": "npm run test && NODE_ENV=production npm run build",
36
36
  "test": "jest",
37
37
  "test:watch": "jest --watch --coverage=false"
38
38
  },
@@ -63,5 +63,5 @@
63
63
  "browser": "dist/polyfill/index.js",
64
64
  "umd:main": "dist/umd/index.js",
65
65
  "unpkg": "dist/umd/index.js",
66
- "gitHead": "d56ab59078eb2657128e33db3d2961a8cdf7d8e0"
66
+ "gitHead": "8ded3d1021986943bea0979e22ed58558338830a"
67
67
  }