Skip to content

Commit b59aab3

Browse files
authored
Nialexsan/add types (#1710)
* switch to uuid from @onflow/utils-uid * create tsconfigs * typedefs in ts * types for actor util * types for address util * Revert "switch to uuid from @onflow/utils-uid" This reverts commit 2a15ef5. * PKG -- [util-actor] converted to ts * updated tsconfig * fixed ts types generation * Resolve circular dependency * ts rlp * change type location * more types * build types during regular build * fix tests * VSN -- [root] Changeset * Merge remote-tracking branch 'origin/master' into nialexsan/add-types * Revert "Resolve circular dependency" This reverts commit 36efc7d. * update lock * VSN -- [root] changeset
1 parent b1b27ec commit b59aab3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+776
-287
lines changed

.changeset/hip-radios-behave.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
"@onflow/util-encode-key": minor
3+
"@onflow/transport-grpc": minor
4+
"@onflow/transport-http": minor
5+
"@onflow/util-invariant": minor
6+
"@onflow/util-template": minor
7+
"@onflow/util-address": minor
8+
"@onflow/util-logger": minor
9+
"@onflow/fcl-bundle": minor
10+
"@onflow/util-actor": minor
11+
"@onflow/protobuf": minor
12+
"@onflow/typedefs": minor
13+
"@onflow/util-uid": minor
14+
"@onflow/config": minor
15+
"@onflow/fcl-wc": minor
16+
"@onflow/types": minor
17+
"@onflow/fcl": minor
18+
"@onflow/rlp": minor
19+
"@onflow/sdk": minor
20+
---
21+
22+
TS build

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,7 @@
2121
"@onflow/util-template": "1.1.0",
2222
"@onflow/util-uid": "1.1.0"
2323
},
24-
"changesets": []
24+
"changesets": [
25+
"hip-radios-behave"
26+
]
2527
}

package-lock.json

Lines changed: 195 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,23 @@
33
"./packages/*"
44
],
55
"scripts": {
6-
"build": "lerna run build:types && lerna run build",
6+
"build": "lerna run build",
77
"start": "npm run build && lerna run start --parallel",
88
"test": "jest",
99
"release": "npm run build && npm run changeset publish",
1010
"changeset": "changeset"
1111
},
1212
"name": "fcl-js",
1313
"devDependencies": {
14+
"@babel/preset-typescript": "^7.22.5",
1415
"@changesets/changelog-github": "^0.4.8",
1516
"@changesets/cli": "^2.26.2",
17+
"@types/jest": "^29.5.3",
1618
"@types/node": "^18.11.18",
1719
"jest": "^29.5.0",
1820
"jest-environment-jsdom": "^29.5.0",
1921
"lerna": "^6.6.2",
20-
"prettier": "^2.6.2"
22+
"prettier": "^2.6.2",
23+
"ts-jest": "^29.1.1"
2124
}
2225
}

0 commit comments

Comments
 (0)