Skip to content

Commit 4437552

Browse files
authored
Upgrade packages (#11)
* updated
1 parent a8bc397 commit 4437552

File tree

4 files changed

+1490
-1511
lines changed

4 files changed

+1490
-1511
lines changed

jest.config.js

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ module.exports = {
1515
},
1616
moduleDirectories: ["node_modules"],
1717
moduleFileExtensions: ["js"],
18-
notify: true,
19-
notifyMode: "always",
2018
resetMocks: true,
2119
testEnvironment: "jsdom",
2220
testMatch: [

package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@umbrellio/observable",
3-
"version": "1.3.4",
3+
"version": "1.4.0",
44
"description": "Observable library",
55
"repository": "git@github.com:umbrellio/observable.git",
66
"author": "Aleksei Bespalov <nulldefiner@gmail.com>",
@@ -16,35 +16,35 @@
1616
"test:coverage": "jest --coverage"
1717
},
1818
"devDependencies": {
19-
"@babel/cli": "^7.14.3",
20-
"@babel/core": "^7.14.3",
21-
"@babel/plugin-proposal-class-properties": "^7.13.0",
22-
"@babel/plugin-transform-react-jsx": "^7.14.3",
23-
"@babel/preset-env": "^7.14.2",
19+
"@babel/cli": "^7.14.8",
20+
"@babel/core": "^7.14.8",
21+
"@babel/plugin-proposal-class-properties": "^7.14.5",
22+
"@babel/plugin-transform-react-jsx": "^7.14.5",
23+
"@babel/preset-env": "^7.14.8",
2424
"@rollup/plugin-babel": "^5.3.0",
25-
"@rollup/plugin-node-resolve": "^13.0.0",
26-
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
25+
"@rollup/plugin-node-resolve": "^13.0.4",
26+
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
2727
"babel-eslint": "^10.1.0",
28-
"coveralls": "^3.1.0",
29-
"eslint": "^7.26.0",
28+
"coveralls": "^3.1.1",
29+
"eslint": "^7.31.0",
3030
"eslint-config-umbrellio": "^5.0.1",
31-
"eslint-plugin-import": "^2.23.2",
32-
"eslint-plugin-jest": "^24.3.6",
31+
"eslint-plugin-import": "^2.23.4",
32+
"eslint-plugin-jest": "^24.4.0",
3333
"eslint-plugin-jsx-a11y": "^6.4.1",
3434
"eslint-plugin-node": "^11.1.0",
3535
"eslint-plugin-prefer-object-spread": "^1.2.1",
3636
"eslint-plugin-promise": "^5.1.0",
37-
"eslint-plugin-react": "^7.23.2",
38-
"jest": "^26.6.3",
37+
"eslint-plugin-react": "^7.24.0",
38+
"jest": "^27.0.6",
3939
"react": "^17.0.2",
4040
"react-dom": "^17.0.2",
41-
"rollup": "^2.48.0"
41+
"rollup": "^2.55.1"
4242
},
4343
"peerDependencies": {
4444
"react": "^16.13.1"
4545
},
4646
"dependencies": {
47-
"babel-jest": "^26.3.0",
47+
"babel-jest": "^27.0.6",
4848
"enzyme": "^3.11.0"
4949
}
5050
}

rollup.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const shared = {
99
moduleDirectories: ["node_modules"],
1010
}),
1111
babel({
12+
babelHelpers: "bundled",
1213
exclude: "node_modules/**",
1314
}),
1415
],

0 commit comments

Comments
 (0)