@taquito/taquito 24.3.0-beta.0 → 24.3.0-beta.2
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/README.md +1 -1
- package/dist/lib/version.js +2 -2
- package/dist/taquito.es6.js +2 -2
- package/dist/taquito.min.js +1 -1
- package/dist/taquito.min.js.LICENSE.txt +3 -10
- package/dist/taquito.umd.js +2 -2
- package/package.json +17 -48
- package/patch.js +0 -20
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* The buffer module from node.js, for the browser.
|
|
3
|
-
*
|
|
4
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
|
-
* @license MIT
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
9
|
-
|
|
10
1
|
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
11
2
|
|
|
12
3
|
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
13
4
|
|
|
14
|
-
/*!
|
|
5
|
+
/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
6
|
+
|
|
7
|
+
/*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) */
|
|
15
8
|
|
|
16
9
|
/*! typedarray-to-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/dist/taquito.umd.js
CHANGED
|
@@ -7413,8 +7413,8 @@
|
|
|
7413
7413
|
|
|
7414
7414
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
7415
7415
|
const VERSION = {
|
|
7416
|
-
"commitHash": "
|
|
7417
|
-
"version": "24.3.0-beta.
|
|
7416
|
+
"commitHash": "fb73f1546d3dff2fbba7741ca6006680212bef16",
|
|
7417
|
+
"version": "24.3.0-beta.2"
|
|
7418
7418
|
};
|
|
7419
7419
|
|
|
7420
7420
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/taquito",
|
|
3
|
-
"version": "24.3.0-beta.
|
|
3
|
+
"version": "24.3.0-beta.2",
|
|
4
4
|
"description": "TypeScript SDK for building wallets, dapps, and tooling on Tezos.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"taquito",
|
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
"typings": "dist/types/taquito.d.ts",
|
|
18
18
|
"files": [
|
|
19
19
|
"signature.json",
|
|
20
|
-
"dist"
|
|
21
|
-
"patch.js"
|
|
20
|
+
"dist"
|
|
22
21
|
],
|
|
23
22
|
"publishConfig": {
|
|
24
23
|
"access": "public"
|
|
@@ -43,9 +42,9 @@
|
|
|
43
42
|
"node": ">=22"
|
|
44
43
|
},
|
|
45
44
|
"scripts": {
|
|
46
|
-
"test": "
|
|
47
|
-
"test:watch": "
|
|
48
|
-
"test:prod": "npm run lint && npm run test
|
|
45
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
46
|
+
"test:watch": "vitest --config ./vitest.config.ts",
|
|
47
|
+
"test:prod": "npm run lint && npm run test",
|
|
49
48
|
"lint": "eslint --ext .js,.ts .",
|
|
50
49
|
"precommit": "lint-staged",
|
|
51
50
|
"prebuild": "rimraf dist",
|
|
@@ -53,8 +52,7 @@
|
|
|
53
52
|
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
|
|
54
53
|
"build:release": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs && npm run build:web",
|
|
55
54
|
"build:web": "webpack && node update-readme.js",
|
|
56
|
-
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w"
|
|
57
|
-
"postinstall": "node patch.js"
|
|
55
|
+
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w"
|
|
58
56
|
},
|
|
59
57
|
"lint-staged": {
|
|
60
58
|
"{src,test}/**/*.ts": [
|
|
@@ -62,41 +60,15 @@
|
|
|
62
60
|
"eslint --fix"
|
|
63
61
|
]
|
|
64
62
|
},
|
|
65
|
-
"jest": {
|
|
66
|
-
"transform": {
|
|
67
|
-
".(ts|tsx)": "ts-jest"
|
|
68
|
-
},
|
|
69
|
-
"testEnvironment": "node",
|
|
70
|
-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
71
|
-
"moduleFileExtensions": [
|
|
72
|
-
"ts",
|
|
73
|
-
"tsx",
|
|
74
|
-
"js"
|
|
75
|
-
],
|
|
76
|
-
"moduleNameMapper": {
|
|
77
|
-
"^@taquito/rpc$": "<rootDir>/../taquito-rpc/src/taquito-rpc.ts",
|
|
78
|
-
"^@taquito/michelson-encoder$": "<rootDir>/../taquito-michelson-encoder/src/taquito-michelson-encoder.ts",
|
|
79
|
-
"^@taquito/michel-codec$": "<rootDir>/../taquito-michel-codec/src/taquito-michel-codec.ts",
|
|
80
|
-
"^@taquito/http-utils$": "<rootDir>/../taquito-http-utils/src/taquito-http-utils.ts",
|
|
81
|
-
"^@taquito/utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
|
|
82
|
-
},
|
|
83
|
-
"coveragePathIgnorePatterns": [
|
|
84
|
-
"/node_modules/",
|
|
85
|
-
"/test/"
|
|
86
|
-
],
|
|
87
|
-
"collectCoverageFrom": [
|
|
88
|
-
"src/**/*.{js,ts}"
|
|
89
|
-
]
|
|
90
|
-
},
|
|
91
63
|
"dependencies": {
|
|
92
|
-
"@taquito/core": "^24.3.0-beta.
|
|
93
|
-
"@taquito/http-utils": "^24.3.0-beta.
|
|
94
|
-
"@taquito/local-forging": "^24.3.0-beta.
|
|
95
|
-
"@taquito/michel-codec": "^24.3.0-beta.
|
|
96
|
-
"@taquito/michelson-encoder": "^24.3.0-beta.
|
|
97
|
-
"@taquito/rpc": "^24.3.0-beta.
|
|
98
|
-
"@taquito/signer": "^24.3.0-beta.
|
|
99
|
-
"@taquito/utils": "^24.3.0-beta.
|
|
64
|
+
"@taquito/core": "^24.3.0-beta.2",
|
|
65
|
+
"@taquito/http-utils": "^24.3.0-beta.2",
|
|
66
|
+
"@taquito/local-forging": "^24.3.0-beta.2",
|
|
67
|
+
"@taquito/michel-codec": "^24.3.0-beta.2",
|
|
68
|
+
"@taquito/michelson-encoder": "^24.3.0-beta.2",
|
|
69
|
+
"@taquito/rpc": "^24.3.0-beta.2",
|
|
70
|
+
"@taquito/signer": "^24.3.0-beta.2",
|
|
71
|
+
"@taquito/utils": "^24.3.0-beta.2",
|
|
100
72
|
"bignumber.js": "^9.1.2",
|
|
101
73
|
"rxjs": "^7.8.2"
|
|
102
74
|
},
|
|
@@ -104,8 +76,7 @@
|
|
|
104
76
|
"@babel/types": "7.25.2",
|
|
105
77
|
"@types/bluebird": "^3.5.42",
|
|
106
78
|
"@types/estree": "^1.0.5",
|
|
107
|
-
"@types/
|
|
108
|
-
"@types/node": "^20",
|
|
79
|
+
"@types/node": "^22.0.0",
|
|
109
80
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
110
81
|
"@typescript-eslint/parser": "^6.21.0",
|
|
111
82
|
"buffer": "^6.0.3",
|
|
@@ -113,8 +84,7 @@
|
|
|
113
84
|
"coveralls": "^3.1.1",
|
|
114
85
|
"cross-env": "^7.0.3",
|
|
115
86
|
"eslint": "^8.57.0",
|
|
116
|
-
"
|
|
117
|
-
"jest-config": "^29.7.0",
|
|
87
|
+
"fs-extra": "^11.3.2",
|
|
118
88
|
"lint-staged": "^15.2.7",
|
|
119
89
|
"lodash.camelcase": "^4.3.0",
|
|
120
90
|
"os-browserify": "^0.3.0",
|
|
@@ -130,7 +100,6 @@
|
|
|
130
100
|
"shelljs": "^0.8.5",
|
|
131
101
|
"stream-browserify": "^3.0.0",
|
|
132
102
|
"terser-webpack-plugin": "^5.3.10",
|
|
133
|
-
"ts-jest": "^29.2.3",
|
|
134
103
|
"ts-node": "^10.9.2",
|
|
135
104
|
"ts-toolbelt": "^9.6.0",
|
|
136
105
|
"typescript": "^5.9.3",
|
|
@@ -139,5 +108,5 @@
|
|
|
139
108
|
"webpack-cli": "^5.1.4",
|
|
140
109
|
"webpack-subresource-integrity": "^5.1.0"
|
|
141
110
|
},
|
|
142
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
|
|
143
112
|
}
|
package/patch.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
2
|
-
const fs = require("fs")
|
|
3
|
-
const angularWebpackConfig =
|
|
4
|
-
'../../@angular-devkit/build-angular/src/angular-cli-files/models/webpack-configs/browser.js';
|
|
5
|
-
|
|
6
|
-
if (fs.existsSync(angularWebpackConfig)) {
|
|
7
|
-
// Patch Angular webpack config to include necessary core Node modules in a bundle
|
|
8
|
-
fs.readFile(angularWebpackConfig, 'utf8', function(err, data) {
|
|
9
|
-
if (err) {
|
|
10
|
-
return console.log(err);
|
|
11
|
-
}
|
|
12
|
-
var result = data.replace(/node: false/g, 'node: {crypto: true, stream: true}');
|
|
13
|
-
|
|
14
|
-
console.log('Patching angular webpack config');
|
|
15
|
-
|
|
16
|
-
fs.writeFile(angularWebpackConfig, result, 'utf8', function(err) {
|
|
17
|
-
if (err) return console.log(err);
|
|
18
|
-
});
|
|
19
|
-
});
|
|
20
|
-
}
|