@pioneer-platform/cosmos-network 8.5.3 → 8.6.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/.turbo/turbo-build.log +2 -0
- package/CHANGELOG.md +6 -23
- package/build.sh +22 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,34 +1,17 @@
|
|
|
1
1
|
# @pioneer-platform/cosmos-network
|
|
2
2
|
|
|
3
|
-
## 8.
|
|
3
|
+
## 8.6.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- Automated patch version bump for all packages
|
|
8
|
-
- Updated dependencies
|
|
9
|
-
- @pioneer-platform/cosmos-tx-encoder@0.4.3
|
|
10
|
-
- @pioneer-platform/loggerdog@8.5.3
|
|
11
|
-
- @pioneer-platform/nodes@8.5.3
|
|
12
|
-
|
|
13
|
-
## 8.5.2
|
|
14
|
-
|
|
15
|
-
### Patch Changes
|
|
16
|
-
|
|
17
|
-
- Automated patch version bump for all packages
|
|
18
|
-
- Updated dependencies
|
|
19
|
-
- @pioneer-platform/cosmos-tx-encoder@0.4.2
|
|
20
|
-
- @pioneer-platform/loggerdog@8.5.2
|
|
21
|
-
- @pioneer-platform/nodes@8.5.2
|
|
5
|
+
### Minor Changes
|
|
22
6
|
|
|
23
|
-
|
|
7
|
+
- Automated minor version bump for all packages
|
|
24
8
|
|
|
25
9
|
### Patch Changes
|
|
26
10
|
|
|
27
|
-
- Automated patch version bump for all packages
|
|
28
11
|
- Updated dependencies
|
|
29
|
-
- @pioneer-platform/cosmos-tx-encoder@0.
|
|
30
|
-
- @pioneer-platform/loggerdog@8.
|
|
31
|
-
- @pioneer-platform/nodes@8.
|
|
12
|
+
- @pioneer-platform/cosmos-tx-encoder@0.5.0
|
|
13
|
+
- @pioneer-platform/loggerdog@8.6.0
|
|
14
|
+
- @pioneer-platform/nodes@8.6.0
|
|
32
15
|
|
|
33
16
|
## 8.5.0
|
|
34
17
|
|
package/build.sh
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Fast Bun build (replaces slow tsc)
|
|
3
|
+
|
|
4
|
+
OUTDIR="${1:-lib}"
|
|
5
|
+
ENTRY="${2:-src/index.ts}"
|
|
6
|
+
|
|
7
|
+
# Clean output
|
|
8
|
+
rm -rf "$OUTDIR"
|
|
9
|
+
mkdir -p "$OUTDIR"
|
|
10
|
+
|
|
11
|
+
# Build with Bun (10x faster than tsc)
|
|
12
|
+
bun build "$ENTRY" \
|
|
13
|
+
--outdir "$OUTDIR" \
|
|
14
|
+
--target node \
|
|
15
|
+
--format cjs \
|
|
16
|
+
--sourcemap \
|
|
17
|
+
--minify
|
|
18
|
+
|
|
19
|
+
# Generate TypeScript declarations
|
|
20
|
+
bunx tsc --emitDeclarationOnly --outDir "$OUTDIR" --project .
|
|
21
|
+
|
|
22
|
+
echo "✅ Built $OUTDIR"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/cosmos-network",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"create": "pnpm run build && pnpm run test",
|
|
6
6
|
"build": "tsc -p .",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@pioneer-platform/cosmos-tx-encoder": "^0.
|
|
13
|
-
"@pioneer-platform/loggerdog": "^8.
|
|
14
|
-
"@pioneer-platform/nodes": "^8.
|
|
12
|
+
"@pioneer-platform/cosmos-tx-encoder": "^0.5.0",
|
|
13
|
+
"@pioneer-platform/loggerdog": "^8.6.0",
|
|
14
|
+
"@pioneer-platform/nodes": "^8.6.0",
|
|
15
15
|
"axios": "^1.6.0",
|
|
16
16
|
"dotenv": "^8.2.0",
|
|
17
17
|
"https": "^1.0.0",
|