Skip to content

Commit 192b6aa

Browse files
committed
clean up dependencies
(fixes #249)
1 parent e909c80 commit 192b6aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+40502
-39578
lines changed

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ styleguide.config.js
1313
TESTING.md
1414
VERSIONING.md
1515
webpack.config.js
16+
babel.config.js
17+
jest.config.js

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Removed unnecessary dependencies, moved react and react-dom to peer dependencies
12+
913
### Fixed
1014

1115
- Checkbox no longer becomes disabled when no id is given (fixes [#248](https://github.com/digipolisantwerp/antwerp-ui_react/issues/248))

package-lock.json

+30,807-31,745
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+15-12
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"scripts": {
1414
"start": "npx styleguidist server",
1515
"test": "jest --coverage",
16-
"bootstrap": "lerna bootstrap",
16+
"bootstrap": "lerna bootstrap --hoist",
1717
"build": "lerna exec --parallel -- rollup -c",
1818
"postbuild": "rollup -c",
1919
"publish": "lerna publish --skip-git --skip-npm",
@@ -33,6 +33,7 @@
3333
"babel-jest": "^26.6.3",
3434
"babel-loader": "^8.1.0",
3535
"chai": "^4.2.0",
36+
"css-loader": "^3.6.0",
3637
"enzyme": "^3.11.0",
3738
"enzyme-adapter-react-16": "^1.15.6",
3839
"eslint": "^7.28.0",
@@ -45,30 +46,32 @@
4546
"identity-obj-proxy": "^3.0.0",
4647
"install": "^0.13.0",
4748
"jest": "^26.6.0",
48-
"jest-cli": "^27.0.4",
49+
"jest-cli": "^26.6.0",
4950
"lerna": "^4.0.0",
51+
"node-sass": "^4.14.1",
5052
"npm": "^7.16.0",
51-
"react-addons-test-utils": "^15.6.2",
53+
"react": "^16.13.1",
54+
"react-dom": "^16.13.1",
55+
"react-scripts": "^4.0.3",
5256
"react-styleguidist": "^11.1.5",
5357
"rollup": "^2.50.6",
5458
"rollup-plugin-postcss": "^4.0.0",
5559
"rollup-plugin-sass": "^1.2.2",
60+
"sass-loader": "^7.3.1",
5661
"sinon": "^9.0.3",
62+
"style-loader": "^0.23.1",
5763
"webpack": "^4.44.1"
5864
},
65+
"peerDependencies": {
66+
"react": "^16.13.1",
67+
"react-dom": "^16.13.1"
68+
},
5969
"dependencies": {
6070
"@a-ui/core": "^5.0.0",
6171
"classnames": "~2.2.6",
62-
"css-loader": "^3.6.0",
63-
"moment": "^2.22.2",
64-
"node-sass": "^4.14.1",
65-
"react": "^16.13.1",
66-
"react-dom": "^16.13.1",
72+
"moment": "^2.24.0",
6773
"react-input-mask": "^2.0.4",
6874
"react-modal": "~3.5.1",
69-
"react-scripts": "^4.0.3",
70-
"rxjs": "^6.6.2",
71-
"sass-loader": "^7.3.1",
72-
"style-loader": "^0.23.1"
75+
"rxjs": "^6.6.2"
7376
}
7477
}

0 commit comments

Comments
 (0)