-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update exported types to remove anys refactor: remove casts and anys and improve internal types build: update all deps test: update tests chore: improve pre-commit script chore: add missing licenses and update thirdparties BREAKING CHANGE: use node 18 Refs: SHELL-191 (#383)
- Loading branch information
Showing
46 changed files
with
4,482 additions
and
18,886 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
npx commitlint --edit $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
npm run type-check | ||
npm run lint -- --quiet | ||
# reuse lint | ||
npm run lint | ||
if command -v pipx > /dev/null 2>&1; then | ||
pipx run reuse download --all && pipx run reuse lint | ||
else | ||
if command -v reuse > /dev/null 2>&1; then | ||
reuse download --all && reuse lint | ||
else | ||
echo "install reuse or pipx to enable license check" | ||
exit 1 | ||
fi | ||
fi | ||
npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
npm run build:clean | ||
npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16 | ||
v18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ MIT License (MIT) applies to: | |
@babel/preset-typescript, Copyright (c) 2014-present Sebastian McKenzie and other contributors | ||
@commitlint/cli, Copyright (c) 2016 - present Mario Nebl | ||
@commitlint/config-conventional, Copyright (c) 2016 - present Mario Nebl | ||
@faker-js/faker, Faker - Copyright (c) 2022-2023, faker.js - Copyright (c) 2020 Marak Squires | ||
@faker-js/faker, Faker - Copyright (c) 2022-2024, faker.js - Copyright (c) 2020 Marak Squires | ||
@reduxjs/toolkit, Copyright (c) 2018 Mark Erikson | ||
@sentry/browser, Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved. | ||
@svgr/webpack, Copyright 2017 Smooth Code | ||
|
@@ -29,9 +29,9 @@ babel-loader, Copyright (c) 2014-2019 Luís Couto <[email protected]> | |
babel-plugin-i18next-extract, Copyright 2019 Gilbert Gilb's <[email protected]> | ||
babel-plugin-styled-components, Copyright (c) 2016-present Vladimir Danchenkov and Maximilian Stoiber | ||
copy-webpack-plugin, Copyright JS Foundation and other contributors | ||
core-js, Copyright (c) 2014-2023 Denis Pushkarev | ||
core-js, Copyright (c) 2014-2024 Denis Pushkarev | ||
css-loader, Copyright JS Foundation and other contributors | ||
darkreader, Copyright (c) 2021 Dark Reader Ltd. | ||
darkreader, Copyright (c) 2024 Dark Reader Ltd. | ||
eslint-plugin-notice, Copyright (c) 2017 Nick Deis | ||
history, Copyright (c) React Training 2016-2020. Copyright (c) Remix Software 2020-2021 | ||
html-webpack-plugin, Copyright JS Foundation and other contributors | ||
|
@@ -43,7 +43,7 @@ immer, Copyright (c) 2017 Michel Weststrate | |
is-ci, Copyright (c) 2016-2021 Thomas Watson Steen | ||
jest-environment-jsdom, Copyright (c) Meta Platforms, Inc. and affiliates. | ||
jest-fail-on-console, Copyright (c) 2022 Valentin Hervieu | ||
jest-styled-components, Copyright (c) 2017 Michele Bertoli | ||
jest-styled-components, Copyright (c) 2017 - present Michele Bertoli | ||
jest, Copyright (c) Meta Platforms, Inc. and affiliates. | ||
lodash, Copyright OpenJS Foundation and other contributors <https://openjsf.org/> | ||
mini-css-extract-plugin, Copyright JS Foundation and other contributors | ||
|
@@ -58,12 +58,11 @@ react, Copyright (c) Facebook, Inc. and its affiliates. | |
styled-components, Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber | ||
tinymce, Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc. | ||
ts-node, Copyright (c) 2014 Blake Embrey ([email protected]) | ||
ua-parser-js, Copyright (c) 2012-2021 Faisal Salman <<[email protected]>> | ||
ua-parser-js, Copyright (c) 2012-2023 Faisal Salman <<[email protected]>> | ||
webpack-cli, Copyright JS Foundation and other contributors | ||
webpack-dev-server, Copyright JS Foundation and other contributors | ||
webpack-merge, Copyright (c) 2015 Juho Vepsalainen | ||
webpack, Copyright JS Foundation and other contributors | ||
whatwg-fetch, Copyright (c) 2014-2023 GitHub, Inc. | ||
zustand, Copyright (c) 2019 Paul Henschel | ||
|
||
MIT License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.