-
Notifications
You must be signed in to change notification settings - Fork 26
feat: Update Libp2p to latest version. Add standalone bundled JS Client #239
Changes from 36 commits
e348ed8
99355e0
397b639
652d2a4
9532ae6
65865d8
9785c3c
41766e9
29d0c38
0582813
4b254e2
dc9b62e
7155cef
69f7669
578372e
e7a41ac
6c7e8d1
45d7761
a72a647
dc9cb86
05b6fcb
a4b16a0
6b7721b
2373f5a
cffa585
41bb1cb
367ad87
12fe816
7faa284
235b7d2
746e79c
0db05d5
362af53
335d223
de513d5
95a1426
5469be9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
auto-install-peers=true | ||
save-exact=true | ||
@fluencelabs:registry=https://npm.fluence.dev/ | ||
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is package-lock.json necessary top-level? Because there is already a pnpm-lock.yaml here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, |
||
"name": "common-dev-deps", | ||
"version": "0.1.0", | ||
"main": "./dist/index.js", | ||
"typings": "./dist/index.d.ts", | ||
"type": "module", | ||
"engines": { | ||
"node": ">=10", | ||
"pnpm": ">=3" | ||
}, | ||
"scripts": {}, | ||
"author": "Fluence Labs", | ||
"license": "Apache-2.0", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"ts-node": "10.9.1", | ||
"typescript": "4.7" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
{ | ||
"extends": "../../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["es2015", "dom"], | ||
"outDir": "./dist/", | ||
"target": "es5", | ||
"module": "commonjs", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"declaration": true, | ||
"declarationMap": false, | ||
"sourceMap": true | ||
"outDir": "./dist" | ||
}, | ||
"exclude": ["node_modules", "dist"], | ||
"include": ["src"] | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,7 @@ | ||
{ | ||
"extends": "../../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"allowJs": true, | ||
"baseUrl": ".", | ||
"sourceMap": false, | ||
"inlineSources": false, | ||
"pretty": true, | ||
"target": "esnext", | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"declaration": false, | ||
"esModuleInterop": true, | ||
"declarationMap": false, | ||
"strict": true, | ||
"noImplicitAny": false, | ||
"alwaysStrict": true, | ||
"noImplicitThis": true, | ||
"strictNullChecks": false | ||
"outDir": "./dist" | ||
}, | ||
"exclude": ["node_modules", "dist"], | ||
"include": ["src", "test"] | ||
"exclude": ["node_modules", "dist"] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,7 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
"esnext" | ||
], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
"jsx": "react-jsx" | ||
}, | ||
"include": [ | ||
"src" | ||
] | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist" | ||
}, | ||
"exclude": ["node_modules", "dist"] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"sourceMap": true, | ||
"declaration": true, | ||
"skipDefaultLibCheck": true | ||
}, | ||
"exclude": ["node_modules", "dist"], | ||
"include": ["src/**/*"] | ||
"outDir": "./dist" | ||
}, | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,7 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"baseUrl": ".", | ||
"downlevelIteration": true, | ||
"sourceMap": true, | ||
"inlineSources": true, | ||
"allowSyntheticDefaultImports": true, | ||
"resolveJsonModule": true, | ||
"target": "ES5", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"esModuleInterop": true, | ||
"declarationMap": true, | ||
"strict": true, | ||
"skipLibCheck": true | ||
"outDir": "./dist" | ||
}, | ||
"exclude": ["node_modules", "dist", "bundle"], | ||
"include": ["src/**/*"] | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this necessary? shouldn't it work with the default npm registry?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are waiting for the fix from machines team. Once it's get done we will switch to release version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed now!