-
Notifications
You must be signed in to change notification settings - Fork 5
[WIP] Update logs for action run details #332
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 all commits
8ca8d54
7331b92
4a22f9e
e21c73d
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,9 +13,14 @@ export default defineConfig({ | |||||
| ], | ||||||
| resolve: { | ||||||
| alias: { | ||||||
| '@object-ui/core': resolve(__dirname, '../core/src/index.ts'), | ||||||
| '@object-ui/types': resolve(__dirname, '../types/src/index.ts'), | ||||||
| '@object-ui/data-objectstack': resolve(__dirname, '../data-objectstack/src/index.ts'), | ||||||
| '@object-ui/core': resolve(__dirname, '../core/src'), | ||||||
| '@object-ui/types': resolve(__dirname, '../types/src'), | ||||||
| '@object-ui/data-objectstack': resolve(__dirname, '../data-objectstack/src'), | ||||||
| '@object-ui/react': resolve(__dirname, '../react/src'), | ||||||
| '@object-ui/components': resolve(__dirname, '../components/src'), | ||||||
| '@object-ui/fields': resolve(__dirname, '../fields/src'), | ||||||
| '@object-ui/plugin-dashboard': resolve(__dirname, '../plugin-dashboard/src'), | ||||||
| '@object-ui/plugin-grid': resolve(__dirname, '../plugin-grid/src'), | ||||||
|
||||||
| '@object-ui/plugin-grid': resolve(__dirname, '../plugin-grid/src'), | |
| '@object-ui/plugin-grid': resolve(__dirname, './src'), // Self-reference for vitest.setup.tsx |
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.
The PR title "[WIP] Update logs for action run details" does not match the actual changes made in this pull request. The changes are about fixing vitest setup file import resolution by adding path aliases to vite.config.ts files across multiple packages. The title should be updated to accurately reflect these changes, such as "Fix vitest setup file import resolution in multiple packages" which is already used in the PR description.