Skip to content

Commit cf766b3

Browse files
committed
Updates packages to latest and fixes linting issues
1 parent fcabcfa commit cf766b3

File tree

3 files changed

+925
-174
lines changed

3 files changed

+925
-174
lines changed

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"import/no-extraneous-dependencies": [
2525
"error",
2626
{ "devDependencies": true }
27-
]
27+
],
28+
"import/extensions": ["warn", "never"]
2829
},
2930
"settings": {
3031
"react": {

package.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"dev": "yarn run clean && cross-env BABEL_ENV=commonjs babel src -d lib --watch",
1818
"start": "parcel examples/index.html -d examples/dist --cache-dir examples/cache --open",
1919
"lint": "eslint src/ --ext .js,.tsx,.ts",
20-
"prepublishOnly": "yarn run test && yarn run clean && yarn run build",
20+
"prepublishOnly": "yarn run test && yarn run lint && yarn run ts:check && yarn run clean && yarn run build",
2121
"test": "jest",
2222
"test:coverage": "jest --coverage",
2323
"ts:check": "tsc -p tsconfig.json --allowJs false --noEmit --emitDeclarationOnly false"
@@ -53,32 +53,32 @@
5353
},
5454
"homepage": "https://github.com/braposo/react-text-loop#readme",
5555
"devDependencies": {
56-
"@babel/cli": "^7.7.0",
57-
"@babel/core": "^7.7.2",
58-
"@babel/plugin-proposal-class-properties": "^7.7.0",
59-
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
60-
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
61-
"@babel/preset-env": "^7.7.1",
62-
"@babel/preset-react": "^7.7.0",
63-
"@babel/preset-typescript": "^7.7.2",
56+
"@babel/cli": "^7.7.5",
57+
"@babel/core": "^7.7.5",
58+
"@babel/plugin-proposal-class-properties": "^7.7.4",
59+
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
60+
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
61+
"@babel/preset-env": "^7.7.6",
62+
"@babel/preset-react": "^7.7.4",
63+
"@babel/preset-typescript": "^7.7.4",
6464
"@testing-library/jest-dom": "^4.2.4",
65-
"@testing-library/react": "^9.3.2",
65+
"@testing-library/react": "^9.4.0",
6666
"@types/jest": "^24.0.23",
67-
"@types/node": "^12.12.8",
68-
"@types/react": "^16.9.11",
67+
"@types/node": "^12.12.17",
68+
"@types/react": "^16.9.16",
6969
"@types/react-dom": "^16.9.4",
7070
"@types/react-motion": "^0.0.29",
71-
"@typescript-eslint/eslint-plugin": "^2.7.0",
72-
"@typescript-eslint/parser": "^2.7.0",
71+
"@typescript-eslint/eslint-plugin": "^2.11.0",
72+
"@typescript-eslint/parser": "^2.11.0",
7373
"babel-eslint": "^10.0.3",
7474
"babel-loader": "^8.0.6",
7575
"cross-env": "^6.0.3",
76-
"eslint": "^6.6.0",
76+
"eslint": "^6.7.2",
7777
"eslint-config-airbnb-base": "^14.0.0",
78-
"eslint-config-prettier": "^6.6.0",
79-
"eslint-plugin-import": "^2.18.2",
78+
"eslint-config-prettier": "^6.7.0",
79+
"eslint-plugin-import": "^2.19.1",
8080
"eslint-plugin-prettier": "^3.1.1",
81-
"eslint-plugin-react": "^7.16.0",
81+
"eslint-plugin-react": "^7.17.0",
8282
"jest": "^24.9.0",
8383
"npm-run-all": "^4.1.5",
8484
"parcel-bundler": "^1.12.4",
@@ -87,8 +87,8 @@
8787
"react-dom": "^16.12.0",
8888
"rimraf": "^3.0.0",
8989
"source-map-loader": "^0.2.4",
90-
"ts-jest": "^24.1.0",
91-
"typescript": "^3.7.2",
90+
"ts-jest": "^24.2.0",
91+
"typescript": "^3.7.3",
9292
"webpack": "^4.41.2",
9393
"webpack-cli": "^3.3.10"
9494
},

0 commit comments

Comments
 (0)