Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes across multiple files to improve the structure and organization of imports, update Tailwind CSS configurations, and adjust module exports. The most important changes include refactoring imports, updating Tailwind CSS content paths, and modifying the
package.json
files for better module resolution.Refactoring imports:
apps/desktop/src/renderer/src/App.vue
: Separated imports from@mqttx/ui
into@mqttx/ui/i18n
and@mqttx/ui/stores
.apps/web/src/App.vue
: Similar separation of imports from@mqttx/ui
into@mqttx/ui/i18n
and@mqttx/ui/stores
.apps/desktop/src/renderer/src/main.ts
andapps/web/src/main.ts
: Updated imports and addedcreatePinia
for state management.Updating Tailwind CSS configurations:
apps/desktop/tailwind.config.ts
andapps/web/tailwind.config.ts
: Expandedcontent
paths to include files from../../packages/ui/src
. [1] [2]Modifying
package.json
files:packages/ui/package.json
: Addedexports
field to specify module entry points for better module resolution.package.json
: Removed thepostinstall
script for generating UI.Additional changes:
packages/ui/src/styles/index.scss
: Commented out the@forward
foriconfont.css
to address a FIXME note.