Skip to content

Commit 7e17201

Browse files
authored
Update Dependencies (#4)
Update Dependencies and Copyright year Signed-off-by: Andy R. Wyss <[email protected]>
1 parent b95ccb0 commit 7e17201

File tree

8 files changed

+601
-235
lines changed

8 files changed

+601
-235
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
eslint-config-vmware-react
22

3-
Copyright 2020 VMware, Inc.
3+
Copyright 2020-2021 VMware, Inc.
44

55
The MIT license (the "License") set forth below applies to all parts of the eslint-config-vmware-react project. You may not use this file except in compliance with the License.
66

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
eslint-config-vmware-react
22

3-
Copyright 2020 VMware, Inc.
3+
Copyright 2020-2021 VMware, Inc.
44

55
This product is licensed to you under the MIT license (the "License"). You may not use this product except in compliance with the MIT License.
66

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2020 VMware, Inc.
1+
/* Copyright 2020-2021 VMware, Inc.
22
* SPDX-License-Identifier: MIT */
33

44
const OFF = 0;

package-lock.json

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

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vmw/eslint-config-vmware-react",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "VMware's ESLint config extending eslint-config-react-app",
55
"author": "VMware, Inc.",
66
"license": "MIT",
@@ -29,33 +29,34 @@
2929
},
3030
"peerDependencies": {
3131
"eslint": "7.x",
32-
"typescript": "3.x"
32+
"typescript": "3.x || 4.x"
3333
},
3434
"dependencies": {
35-
"@typescript-eslint/eslint-plugin": "4.8.1",
36-
"@typescript-eslint/parser": "4.8.1",
35+
"@typescript-eslint/eslint-plugin": "4.14.1",
36+
"@typescript-eslint/parser": "4.14.1",
3737
"eslint-config-react-app": "6.0.0",
38-
"eslint-config-prettier": "6.15.0",
38+
"eslint-config-prettier": "7.2.0",
3939
"eslint-import-resolver-typescript": "2.3.0",
4040
"eslint-plugin-flowtype": "5.2.0",
4141
"eslint-plugin-import": "2.22.1",
4242
"eslint-plugin-jest": "24.1.3",
4343
"eslint-plugin-jsx-a11y": "6.4.1",
44-
"eslint-plugin-prettier": "3.1.4",
45-
"eslint-plugin-react": "7.21.5",
44+
"eslint-plugin-prettier": "3.3.1",
45+
"eslint-plugin-react": "7.22.0",
4646
"eslint-plugin-react-hooks": "4.2.0",
4747
"eslint-plugin-sort-destructure-keys": "1.3.5",
4848
"eslint-plugin-typescript-sort-keys": "1.5.0",
49-
"prettier": "2.1.2"
49+
"prettier": "2.2.1"
5050
},
5151
"devDependencies": {
52-
"@types/jest": "26.0.15",
52+
"@types/jest": "26.0.20",
5353
"@types/react": "16.9.56",
5454
"babel-eslint": "10.1.0",
55-
"eslint": "7.13.0",
55+
"eslint": "7.18.0",
5656
"jest": "26.6.3",
57+
"node-notifier": ">=8.0.1",
5758
"react": "17.0.1",
5859
"ts-jest": "26.4.4",
59-
"typescript": "3.9.7"
60+
"typescript": "4.1.3"
6061
}
6162
}

test/sample-comp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2020 VMware, Inc.
1+
/* Copyright 2020-2021 VMware, Inc.
22
* SPDX-License-Identifier: MIT */
33

44
import React from 'react';

test/sample.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2020 VMware, Inc.
1+
/* Copyright 2020-2021 VMware, Inc.
22
* SPDX-License-Identifier: MIT */
33

44
import { greeter, sum } from './sample';

test/sample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2020 VMware, Inc.
1+
/* Copyright 2020-2021 VMware, Inc.
22
* SPDX-License-Identifier: MIT */
33

44
export function sum(a: number, b: number) {

0 commit comments

Comments
 (0)