-
Notifications
You must be signed in to change notification settings - Fork 340
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 memory leak in SSR docs #3386
Conversation
packages/ag-grid-theme/package.json
Outdated
@@ -17,7 +17,7 @@ | |||
"@ag-grid-community/vue3": "^29.0.0" | |||
}, | |||
"peerDependencies": { | |||
"vuestic-ui": "^1.3.0" | |||
"vuestic-ui": "1.6.4" |
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.
Probably ^1.6.4?
packages/deploy/package.json
Outdated
"inquirer": "^9.0.0", | ||
"typescript": "^4.3.2", | ||
"chalk": "^5.0.1" | ||
"typescript": "4.7.4", |
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.
Maybe 5?
packages/nuxt/package.json
Outdated
"pathe": "^0.3.5", | ||
"vuestic-ui": "^1.4.10" | ||
"vuestic-ui": "1.6.4" |
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.
Probably shouldn't be 1.6.4.
@@ -31,21 +31,21 @@ | |||
"vue": "*" | |||
}, | |||
"devDependencies": { | |||
"@vitejs/plugin-vue": "^1.3.0", |
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.
We can:
- use
*
for non library projects (docs/sandbox) - use
^1.2.3
for library projects (ui, ag-grid-pluign)
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.
:)
packages/ui/src/services/vue-plugin/create-vuestic/create-vuestic.ts
Outdated
Show resolved
Hide resolved
@@ -1,4 +1,15 @@ | |||
import type { ComponentOptionsBase, PropType, ExtractPropTypes } from 'vue' |
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.
tsconfig.json
Outdated
@@ -1,22 +1,26 @@ | |||
{ | |||
"compilerOptions": { | |||
"target": "esnext", | |||
"target": "es2018", |
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.
Why?
tsconfig.json
Outdated
"module": "esnext", | ||
"strict": true, | ||
"jsx": "preserve", | ||
"importHelpers": true, | ||
"moduleResolution": "node", | ||
"skipLibCheck": true, |
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.
Maybe we can double check these changes?
Maybe we can delete this root tsconfig for good.
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.
:)
9da301e
to
194e444
Compare
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.
🤟
This PR contains massive changes related to dependencies to get SSG running.
Side effects:
Need QA.