Skip to content
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

Build all packages with TypeScript, including core #2799

Merged
merged 30 commits into from
May 6, 2022
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b133f8b
Build all packages with tsdx
nickgros Apr 9, 2022
05ee8ef
Drop eslint ecmaFeatures
nickgros Apr 10, 2022
fb35afa
Disable new lint rules for now
nickgros Apr 10, 2022
36150db
Utils has not changed
nickgros Apr 10, 2022
c0a9602
Drop unused imports/variables
nickgros Apr 10, 2022
cb1a24c
Drop unused import
nickgros Apr 11, 2022
03a4406
Fix build issues-mostly unused props/imports
nickgros Apr 11, 2022
b1d4958
Factor out typescript devDependencies
nickgros Apr 11, 2022
a50fe12
Remove unnecessary target override
nickgros Apr 11, 2022
9b8dfc5
Bump fluentui to v8 for compatibility w/ react 17+
nickgros Apr 11, 2022
d223cd0
provide tsdx build format arg to build UMD
stringfellow Apr 12, 2022
3bddf3e
Newer version of react-is is causing failure for some reason
nickgros Apr 14, 2022
3f9088e
Move getDefaultRegistry to prevent dependency cycle
nickgros Apr 14, 2022
fbd6782
Don't default to the default registry (breaks dependency cycle)
nickgros Apr 14, 2022
3419a24
Merge branch 'master' of https://github.com/rjsf-team/react-jsonschem…
nickgros Apr 15, 2022
75d83a4
Drop unused imports in fluent-ui Theme.ts
nickgros Apr 15, 2022
e642b82
Merge branch 'themes/tsdx-buildout-umd' of https://github.com/DemandL…
nickgros Apr 19, 2022
64f5d40
Include output to UMD in other packages
nickgros Apr 19, 2022
7b64313
Ensure registry is being passed
nickgros Apr 19, 2022
4aee251
Use ts-loader and continue to use webpack for core
nickgros Apr 26, 2022
f83a328
Merge branch 'master' of https://github.com/rjsf-team/react-jsonschem…
nickgros May 3, 2022
5618fb0
Build all package types in one go
nickgros May 3, 2022
eefce62
Merge branch 'master' into typescript/core
nickgros May 6, 2022
017abf3
Apply suggestions from code review
nickgros May 6, 2022
1459b7a
Apply suggestions from code review
nickgros May 6, 2022
8a9457b
Apply suggestions from code review
nickgros May 6, 2022
df45fba
Apply suggestions from code review
nickgros May 6, 2022
4551b60
Merge branch 'master' of https://github.com/rjsf-team/react-jsonschem…
nickgros May 6, 2022
e2a188d
Run `npx lerna exec -- npm i`
nickgros May 6, 2022
4d0aaf6
Merge branch 'master' into typescript/core
nickgros May 6, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44,957 changes: 33,308 additions & 11,649 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"devDependencies": {
"husky": "^3.1.0",
"source-map-loader": "^1.1.2"
"source-map-loader": "^1.1.2",
"ts-loader": "^8.4.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"webpack": "^4.46.0"
},
"husky": {
"hooks": {
Expand Down
Loading