This repository was archived by the owner on Jul 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
feat!: Unify all packages #327
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
a5321e6
* Separate marine worker as a package
akim-bow 84406d4
Finalizing test fixes
akim-bow de39c0c
fix: rename back to Fluence CLI (#320)
shamsartem 48d2d1b
fix(deps): update dependency @fluencelabs/avm to v0.43.1 (#322)
renovate[bot] a152db2
chore: release master (#324)
fluencebot 9276dee
feat: use marine-js 0.7.2 (#321)
ValeryAntopol c85ed25
chore: Fix test with node 18/20 error message (#323)
akim-bow 1ccf057
* Separate marine worker as a package
akim-bow 34820cc
Finalizing test fixes
akim-bow a8f206e
* Refactoring packages.
akim-bow e6b62ac
Fix almost all tests
akim-bow a30ab59
Fix last strange test
akim-bow c8946e3
Remove package specific packages
akim-bow 56dab3b
Remove avm class as it looks excessive
akim-bow 61096ac
marine worker new version
akim-bow 3468cbd
Merge branch 'master' into unify-all-packages
akim-bow 1483b96
misc refactoring/remove console.log's
akim-bow 9bd451b
Rename package js-peer to js-client
akim-bow bdfd617
Move service info to marine worker
akim-bow 39328ad
Change CDN path
akim-bow 5cb5f5f
Fix worker race confition
akim-bow c1cd6cd
Remove buffer type
akim-bow 631f1ba
Remove turned off headless mode in platform tests
akim-bow 315d760
Remove async keyword to make tests pass
akim-bow 24b7bd5
Remove util package
akim-bow 5ea2aef
Make js-client.api package just reexport interface from js-client mai…
akim-bow c078758
Update package info in CI
akim-bow 2881e7a
Fix review comments
akim-bow ca93e66
Remove test entry from marine-worker package
akim-bow 35c5a2f
Misc fixes
akim-bow e1de1b1
Fix worker type
akim-bow db34a6e
Add fetchers
akim-bow 8e63dc8
Specify correct versions for js-client package
akim-bow 3630d90
Set first ver for js-client
akim-bow c7552ac
Update libp2p and related dep versions to the latest
akim-bow b97ffe0
Build all deps into package itself
akim-bow b7d3a85
Fix review
akim-bow 784ddef
Refine package
akim-bow bcf0a1c
Fix comment
akim-bow ffd7519
Update packages/core/js-client/src/fetchers/browser.ts
shamsartem 5b5560a
Update packages/core/js-client/src/fetchers/index.ts
shamsartem ab10e57
Update packages/core/js-client/src/fetchers/node.ts
shamsartem 50c72e7
Update packages/core/js-client/src/jsPeer/FluencePeer.ts
shamsartem 14e0dd3
Update packages/core/js-client/src/keypair/__test__/KeyPair.spec.ts
shamsartem da8adb7
Update packages/core/js-client/src/jsPeer/FluencePeer.ts
akim-bow acefb3a
Delete outdated file
akim-bow a3543f4
Need types for build to work
akim-bow 86a18be
Inline func call
akim-bow 645a5bf
Add comments to replacement lines.
akim-bow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
{ | ||
"packages/client/api": "0.12.1", | ||
"packages/client/js-client.node": "0.7.1", | ||
"packages/client/js-client.web": "0.2.5", | ||
"packages/client/js-client.web.standalone": "0.14.1", | ||
"packages/client/tools": "0.2.1", | ||
"packages/core/interfaces": "0.8.1", | ||
"packages/core/js-peer": "0.9.1" | ||
"packages/core/js-client": "0.0.10", | ||
"packages/core/marine-worker": "0.2.10", | ||
"packages/core/interfaces": "0.8.1" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import '@fluencelabs/js-client.node'; | ||
import '@fluencelabs/js-client'; | ||
import { runTest } from '@test/aqua_for_test'; | ||
|
||
runTest().then(() => console.log('Smoke tests succeed!')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.