-
Notifications
You must be signed in to change notification settings - Fork 1
Kbdev 1524 signed license #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
9d24e21
6b21349
e122cc3
2d95817
b3376dd
a6126bb
3a10ae6
748cd77
3c004fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,7 +48,7 @@ | |
| "react-dom": "^19.2.4", | ||
| "react-google-charts": "^3.0.15", | ||
| "react-query": "npm:@tanstack/react-query@^5.96.1", | ||
| "react-router-dom": "^6.22.2", | ||
| "react-router": "^7.14.2", | ||
| "slugify": "^1.4.0", | ||
| "typescript": "5.1", | ||
| "use-debounce": "^3.4.2", | ||
|
|
@@ -104,14 +104,14 @@ | |
| "build": "vite build", | ||
| "build:ci": "vite build; vite build --mode staging; NODE_ENV=development vite build --mode development", | ||
| "compress": "tar cvfz v${npm_package_version}.tar.gz dist", | ||
| "test": "TZ=UTC vitest", | ||
| "test": "REACT_APP_VERSION=1.0.0 TZ=UTC vitest", | ||
| "test:ci": "npm run test --", | ||
| "lint": "eslint src --config .eslintrc.json --quiet", | ||
| "check-types": "tsc --noEmit --project ./tsconfig.check.json", | ||
| "serve": "NODE_ENV=development serve dist/development -s", | ||
| "commit": "git-cz", | ||
| "storybook": "TZ=UTC storybook dev -p 6006", | ||
| "build-storybook": "TZ=UTC storybook build" | ||
| "storybook": "REACT_APP_VERSION=1.0.0 TZ=UTC storybook dev -p 6006", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we make this dynamic, or is this
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is to make it not dynamic for the tests |
||
| "build-storybook": "REACT_APP_VERSION=1.0.0 TZ=UTC storybook build" | ||
| }, | ||
| "config": { | ||
| "commitizen": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need
/gin these? or is the first match good enough?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesn't seem to make a difference but should have them regardless 3a10ae6