Skip to content

Commit

Permalink
Dependencies: Have been updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
furcan committed Nov 3, 2021
1 parent e663e44 commit 3642d20
Show file tree
Hide file tree
Showing 7 changed files with 700 additions and 838 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
"sourceType": "module",
"warnOnUnsupportedTypeScriptVersion": false
},
"plugins": [
"@typescript-eslint"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@1.0.2
* **Changed:** Home Page: `aria-label` for the product detail button elements for accessibility.
* **Changed:** Home Page, Header Menu: `aria-label` for the product detail button elements for accessibility.

@1.0.1
* **Fixed:** Documentation Page: Navigations were not working properly when if the tables were not visible.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This application is the documentation project of [Notiflix](https://github.com/n

### Current Version

1.0.1 [*](https://github.com/notiflix/notiflix.github.io/blob/main/CHANGELOG.md "CHANGELOG")
1.0.2 [*](https://github.com/notiflix/notiflix.github.io/blob/main/CHANGELOG.md "CHANGELOG")


---------
Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const nextConfig = {
// next images
images: {
loader: 'imgix',
path: constants.app.url,
disableStaticImages: true,
},

Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@
"deploy": "yarn build && next export -o .dist"
},
"dependencies": {
"next": "11.1.0",
"next": "12.0.2",
"notiflix": "^3.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@ts-stack/markdown": "^1.4.0",
"@types/js-yaml": "^4.0.3",
"@types/react": "17.0.26",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@types/js-yaml": "^4.0.4",
"@types/react": "17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"eslint-config-next": "12.0.2",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"frontmatter-markdown-loader": "^3.6.3",
"js-yaml": "^4.1.0",
"react-icons": "^4.2.0",
"sass": "^1.42.1",
"react-icons": "^4.3.1",
"sass": "^1.43.4",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.21.0",
"stylelint-webpack-plugin": "^3.0.1",
"typescript": "4.4.3"
"stylelint-webpack-plugin": "^3.1.0",
"typescript": "4.4.4"
},
"browserslist": {
"production": [
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"@styles/*": [
"styles/*"
],
]
},
"target": "ES5",
"lib": [
Expand All @@ -37,7 +37,8 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
"jsx": "preserve",
"incremental": false
},
"include": [
"next-env.d.ts",
Expand Down
1,505 changes: 682 additions & 823 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 3642d20

Please sign in to comment.