Skip to content

Commit ab59e59

Browse files
authored
Merge pull request #42 from flatlogic/update-deps
feat: update deps
2 parents cbf8f02 + 7c99ee6 commit ab59e59

File tree

5 files changed

+1721
-1593
lines changed

5 files changed

+1721
-1593
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ npm install
5454
```shell
5555
yarn
5656
```
57+
If you encounter problems use `yarn install --ignore-optional`
5758

5859
## Quick start
5960
Run development server

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [1.0.7] - 26/11/2024
4+
5+
- Updated dependencies
6+
- Fix scripts
7+
38
## [1.0.6] - 22/12/2023
49

510
- Updated dependencies

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "one-react-template",
3-
"version": "1.0.5",
3+
"version": "1.0.7",
44
"private": true,
55
"scripts": {
6-
"build": "cross-env PUBLIC_URL='./' node scripts/build.js",
7-
"start": "node scripts/start.js",
6+
"build": "cross-env PUBLIC_URL='./' NODE_OPTIONS=--openssl-legacy-provider node scripts/build.js",
7+
"start": "NODE_OPTIONS=--openssl-legacy-provider node scripts/start.js",
88
"test": "node scripts/test.js"
99
},
1010
"browserslist": [
@@ -68,7 +68,7 @@
6868
"moment": "^2.29.4",
6969
"rc-hammerjs": "^0.6.10",
7070
"react": "^16.14.0",
71-
"react-animate-height": "^2.0.23",
71+
"react-animate-height": "^2.1.2",
7272
"react-animated-number": "^0.4.4",
7373
"react-apexcharts": "^1.4.1",
7474
"react-dev-utils": "^6.1.1",
@@ -82,9 +82,9 @@
8282
"react-toastify": "^5.5.0",
8383
"react-transition-group": "^2.9.0",
8484
"reactstrap": "7.1.0",
85-
"redux": "^4.1.0",
85+
"redux": "^4.2.1",
8686
"redux-logger": "^3.0.6",
87-
"redux-thunk": "^2.3.0",
87+
"redux-thunk": "^2.4.2",
8888
"rickshaw": "1.7.1"
8989
},
9090
"devDependencies": {
@@ -110,9 +110,9 @@
110110
"eslint-config-react-app": "4.0.1",
111111
"eslint-loader": "2.1.1",
112112
"eslint-plugin-flowtype": "3.13.0",
113-
"eslint-plugin-import": "2.29.1",
114-
"eslint-plugin-jsx-a11y": "6.8.0",
115-
"eslint-plugin-react": "7.33.2",
113+
"eslint-plugin-import": "2.31.0",
114+
"eslint-plugin-jsx-a11y": "6.10.2",
115+
"eslint-plugin-react": "7.37.2",
116116
"eslint-plugin-react-hooks": "1.7.0",
117117
"expose-loader": "0.7.5",
118118
"file-loader": "3.0.1",
@@ -126,7 +126,7 @@
126126
"lodash.assign": "^4.2.0",
127127
"lodash.clonedeep": "^4.5.0",
128128
"mini-css-extract-plugin": "0.12.0",
129-
"node-sass": "4.14.1",
129+
"sass": "1.81.0",
130130
"optimize-css-assets-webpack-plugin": "5.0.6",
131131
"pnp-webpack-plugin": "1.7.0",
132132
"postcss-flexbugs-fixes": "4.2.1",

src/styles/_utils.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ $z-index-variants: (more: 1, less: -1, '10': 10, '-10': -10);
439439
.form-control:focus,
440440
.form-control:focus + .input-group-addon,
441441
&.focus .input-group-addon {
442-
@extend .input-no-border:focus;
442+
background-color: $gray-100;
443443
}
444444
}
445445

0 commit comments

Comments
 (0)