-
Notifications
You must be signed in to change notification settings - Fork 25
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
Fix up some config etc. (attempt 2) #1018
Changes from all commits
29d455d
043efca
22b53f6
6a11b46
e58e8a3
f27dcf0
6ecd6a8
5b1f360
b95d861
71c59f1
ea3d484
7c31236
7225955
7b956bd
930ff26
290b890
90b45a2
31ce1df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
'@kadena/chainweb-stream-client': none | ||
'@kadena/chainweb-node-client': none | ||
'@kadena/cryptography-utils': none | ||
'@kadena/immutable-records': none | ||
'@kadena/pactjs-generator': none | ||
'@kadena/react-components': none | ||
'@kadena/client-examples': none | ||
'@kadena-dev/markdown': none | ||
'@kadena-dev/eslint-config': none | ||
'@kadena-dev/eslint-plugin': none | ||
'@kadena-dev/lint-package': none | ||
'@kadena/graph-client': none | ||
'@kadena/pactjs-cli': none | ||
'@kadena/chainwebjs': none | ||
'kadena.js': none | ||
'@kadena/cookbook': none | ||
'@kadena/react-ui': none | ||
'@kadena/kda-cli': none | ||
'@kadena/client': none | ||
'@kadena/pactjs': none | ||
'@kadena/graph': none | ||
'@kadena/types': none | ||
'@kadena/docs': none | ||
--- | ||
|
||
Fix up some config and dependencies |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
'@kadena/chainweb-stream-client': none | ||
'@kadena/chainweb-node-client': none | ||
'@kadena/cryptography-utils': none | ||
'@kadena/immutable-records': none | ||
'@kadena/pactjs-generator': none | ||
'@kadena/react-components': none | ||
'@kadena/client-examples': none | ||
'@kadena-dev/markdown': none | ||
'@kadena-dev/eslint-config': none | ||
'@kadena-dev/eslint-plugin': none | ||
'@kadena-dev/lint-package': none | ||
'@kadena/graph-client': none | ||
'@kadena/pactjs-cli': none | ||
'@kadena/chainwebjs': none | ||
'kadena.js': none | ||
'@kadena/cookbook': none | ||
'@kadena/react-ui': none | ||
'@kadena/kda-cli': none | ||
'@kadena/client': none | ||
'@kadena/pactjs': none | ||
'@kadena/graph': none | ||
'@kadena/types': none | ||
'@kadena/docs': none | ||
--- | ||
|
||
Fix up some config and dependencies |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
"@mdx-js/loader": "~2.3.0", | ||
"@mdx-js/react": "~2.3.0", | ||
"@next/mdx": "~13.3.4", | ||
"@vanilla-extract/css": "1.12.0", | ||
"@vanilla-extract/css": "1.13.0", | ||
"acorn": "~8.8.2", | ||
"algoliasearch": "^4.20.0", | ||
"classnames": "^2.3.1", | ||
|
@@ -51,7 +51,7 @@ | |
"mdast-util-to-markdown": "~1.5.0", | ||
"mdast-util-to-string": "~3.2.0", | ||
"mobx": "~6.9.0", | ||
"next": "13.5.3", | ||
"next": "13.5.5", | ||
"next-themes": "~0.2.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
|
@@ -104,8 +104,7 @@ | |
"micromark-extension-frontmatter": "~1.1.0", | ||
"mini-css-extract-plugin": "2.7.6", | ||
"openapi-types": "~12.1.3", | ||
"prettier": "~3.0.0", | ||
"prettier-plugin-packagejson": "^2.4.5", | ||
"prettier": "~3.0.3", | ||
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. if we're allowing prettier at root level dependency, then why are we keeping prettier again here? 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. To keep them as much self-contained/isolated as possible. |
||
"recursive-copy": "^2.0.14", | ||
"start-server-and-test": "~2.0.0", | ||
"storybook": "^7.4.0", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,11 @@ | |
"@walletconnect/modal": "~2.6.1", | ||
"@walletconnect/sign-client": "~2.8.1", | ||
"@walletconnect/utils": "~2.9.2", | ||
"ace-builds": "~1.22.1", | ||
"ace-builds": "~1.30.0", | ||
"classnames": "^2.3.1", | ||
"jest-standard-reporter": "~2.0.0", | ||
"js-cookie": "~3.0.5", | ||
"next": "13.4.5", | ||
"next": "13.5.5", | ||
"next-themes": "~0.2.1", | ||
"next-translate": "~2.0.6", | ||
"react": "^18.2.0", | ||
|
@@ -72,20 +72,19 @@ | |
"@types/testing-library__jest-dom": "~5.14.8", | ||
"@typescript-eslint/eslint-plugin": "^5.23.0", | ||
"@typescript-eslint/parser": "^5.23.0", | ||
"@vanilla-extract/css": "1.12.0", | ||
"@vanilla-extract/css": "1.13.0", | ||
"@vanilla-extract/jest-transform": "1.1.1", | ||
"@vanilla-extract/next-plugin": "2.3.1", | ||
"@walletconnect/types": "~2.8.1", | ||
"@webpro/next-translate-plugin": "^2.6.3", | ||
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. ? 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.
tl/dr; that plugin doesn't support custom base path cq monorepos so I fixed it. We'll go back to the original once it's sorted downstream. 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. Could you add a section in the readme or amend this commit to add this PR in the message? It's easier to find why we have this in transition for the future |
||
"debug": "~4.3.4", | ||
"eslint": "^8.45.0", | ||
"eslint-config-next": "13.4.5", | ||
"eslint-plugin-jest": "~27.2.1", | ||
"ignore-loader": "~0.1.2", | ||
"jest": "^29.7.0", | ||
"jest-environment-jsdom": "~29.6.1", | ||
"next-translate-plugin": "~2.0.5", | ||
"prettier": "~3.0.0", | ||
"prettier-plugin-packagejson": "^2.4.5", | ||
"prettier": "~3.0.3", | ||
"typescript": "5.2.2" | ||
}, | ||
"volta": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,5 @@ | |
}, | ||
"allowJs": true | ||
}, | ||
"include": ["src/**/*.ts", "src/**/*.tsx"], | ||
"exclude": ["node_modules"] | ||
} |
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 2 changesets?
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.
I think it's coming from the fact I branched from another feat branch. I'll keep it in mind. Either way, it's all
none
so it'll basically end up nowheere.