Skip to content

Commit f354632

Browse files
committed
update dependencies to the latest and fixes related issues
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent cde81cd commit f354632

Some content is hidden

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

47 files changed

+6456
-3691
lines changed

.flowconfig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,5 @@ suppress_type=$FlowIssue
2727
suppress_type=$FlowFixMe
2828
suppress_type=$FixMe
2929

30-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-1]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*relay[a-z,_]*\\)?)\\)
31-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-1]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*relay[a-z,_]*\\)?)\\)? #[0-9]+
32-
3330
[version]
34-
^0.78.0
31+
^0.134.0

flow/node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ declare class Buffer extends Uint8Array {
125125
}
126126

127127
declare module "buffer" {
128-
declare export var Buffer: typeof Buffer;
128+
declare export type Buffer = Buffer;
129129
declare var kMaxLength: number;
130130
declare var INSPECT_MAX_BYTES: number;
131131
declare function transcode(source: Buffer, fromEnc: buffer$Encoding, toEnc: buffer$Encoding): Buffer;

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lerna": "2.9.0",
2+
"lerna": "3.22.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"version": "0.0.19",

package.json

Lines changed: 47 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -16,60 +16,61 @@
1616
"lib/"
1717
],
1818
"scripts": {
19-
"build": "cross-env NODE_ENV=production node scripts/build.js",
19+
"build": "cross-env NODE_ENV=production node ./scripts/build.js",
2020
"jest": "cross-env NODE_ENV=test jest \"$@\"",
2121
"lint": "yarn run lint-prettier && eslint . --cache",
22-
"lint-prettier": "node scripts/prettier.js lint",
23-
"prettier": "node scripts/prettier.js write",
24-
"tck": "yarn run build && node packages/rsocket-tck/build/index.js \"$@\"",
25-
"simple-cli": "yarn run build && node packages/rsocket-examples/build/SimpleCli.js \"$@\"",
26-
"resume-example": "yarn run build && node packages/rsocket-examples/build/ResumeExample.js",
27-
"lease-client-example": "yarn run build && node packages/rsocket-examples/build/LeaseClientExample.js \"$@\"",
22+
"lint-prettier": "node ./scripts/prettier.js lint",
23+
"prettier": "node ./scripts/prettier.js write",
24+
"tck": "yarn run build && node ./packages/rsocket-tck/build/index.js \"$@\"",
25+
"simple-cli": "yarn run build && node ./packages/rsocket-examples/build/SimpleCli.js \"$@\"",
26+
"resume-example": "yarn run build && node ./packages/rsocket-examples/build/ResumeExample.js",
27+
"lease-client-example": "yarn run build && node ./packages/rsocket-examples/build/LeaseClientExample.js \"$@\"",
2828
"test": "f() { EXIT=0; yarn run typecheck || EXIT=$?; yarn run jest \"$@\" || EXIT=$?; exit $EXIT; }; f",
29-
"typecheck": "flow check packages/"
29+
"typecheck": "flow check ./packages/"
3030
},
3131
"workspaces": [
3232
"packages/*"
3333
],
3434
"devDependencies": {
35-
"babel-cli": "^6.9.0",
36-
"babel-core": "^6.9.0",
37-
"babel-eslint": "^7.2.1",
38-
"babel-plugin-minify-replace": "^0.4.3",
39-
"babel-plugin-transform-async-to-generator": "^6.24.1",
40-
"babel-plugin-transform-class-properties": "^6.24.1",
41-
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
42-
"babel-plugin-transform-flow-strip-types": "^6.22.0",
43-
"babel-plugin-transform-object-rest-spread": "^6.23.0",
44-
"babel-plugin-transform-runtime": "^6.9.0",
45-
"babel-polyfill": "^6.9.0",
46-
"babel-preset-fbjs": "^2.0.0",
47-
"babel-runtime": "^6.6.1",
48-
"buffer": "^5.0.6",
49-
"chalk": "^1.1.3",
50-
"cross-env": "^6.0.3",
51-
"eslint": "^4.18.2",
52-
"eslint-config-fb-strict": "^19.0.1",
53-
"eslint-plugin-babel": "^4.1.1",
54-
"eslint-plugin-flowtype": "^2.30.3",
55-
"eslint-plugin-jasmine": "^2.2.0",
56-
"eslint-plugin-jsx-a11y": "^6.2.3",
57-
"eslint-plugin-prefer-object-spread": "^1.1.0",
58-
"eslint-plugin-react": "^6.10.3",
59-
"eslint-plugin-relay": "^1.3.12",
60-
"fbjs": "^0.8.1",
61-
"fbjs-scripts": "^0.7.1",
62-
"flow-bin": "^0.78.0",
63-
"glob": "^7.1.1",
64-
"jest": "^19.0.2",
65-
"lerna": "^2.9.0",
66-
"object-assign": "^4.1.0",
67-
"prettier": "0.22.0",
68-
"rollup": "^0.41.6",
69-
"rollup-plugin-babel": "^2.7.1",
70-
"rollup-plugin-commonjs": "^8.0.2",
71-
"rollup-plugin-node-resolve": "^3.0.0",
72-
"ws": "^2.3.1"
35+
"@babel/cli": "^7.11.6",
36+
"@babel/core": "^7.11.6",
37+
"babel-eslint": "^10.1.0",
38+
"babel-plugin-minify-replace": "^0.5.0",
39+
"@babel/plugin-transform-async-to-generator": "^7.10.4",
40+
"@babel/plugin-proposal-class-properties": "^7.10.4",
41+
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
42+
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
43+
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
44+
"@babel/plugin-transform-runtime": "^7.11.5",
45+
"@babel/polyfill": "^7.11.5",
46+
"babel-preset-fbjs": "^3.3.0",
47+
"@babel/runtime": "^7.11.2",
48+
"buffer": "^5.6.0",
49+
"chalk": "^4.1.0",
50+
"cross-env": "^7.0.2",
51+
"eslint": "^7.10.0",
52+
"eslint-config-fb-strict": "^26.0.0",
53+
"eslint-plugin-babel": "^5.3.1",
54+
"eslint-plugin-flowtype": "^5.2.0",
55+
"eslint-plugin-jasmine": "^4.1.1",
56+
"eslint-plugin-jsx-a11y": "^6.3.1",
57+
"eslint-plugin-prefer-object-spread": "^1.2.1",
58+
"eslint-plugin-react": "^7.21.2",
59+
"eslint-plugin-relay": "^1.8.1",
60+
"eslint-plugin-jest": "^24.0.2",
61+
"fbjs": "^2.0.0",
62+
"fbjs-scripts": "^2.0.0",
63+
"flow-bin": "^0.134.0",
64+
"glob": "^7.1.6",
65+
"jest": "^26.4.2",
66+
"lerna": "^3.22.1",
67+
"object-assign": "^4.1.1",
68+
"prettier": "2.1.2",
69+
"rollup": "^2.28.2",
70+
"@rollup/plugin-babel": "^5.2.1",
71+
"@rollup/plugin-commonjs": "^15.1.0",
72+
"@rollup/plugin-node-resolve": "^9.0.0",
73+
"ws": "^7.3.1"
7374
},
7475
"devEngines": {
7576
"node": ">=4.x"

packages/rsocket-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "BSD-3-Clause",
1010
"main": "build/index.js",
1111
"dependencies": {
12-
"fbjs": "^1.0.0",
12+
"fbjs": "^2.0.0",
1313
"rsocket-flowable": "^0.0.14",
1414
"rsocket-types": "^0.0.16"
1515
}

0 commit comments

Comments
 (0)