trix-ui 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,7 @@ export async function setupTailwind(cwd, projectInfo, options) {
31
31
  * we leave it untouched.
32
32
  */
33
33
  export async function setupGlobalStyles(cwd, config, options) {
34
- const globalPath = config.framework == "vite" ? "index.css" : config.paths.styles;
34
+ const globalPath = config.framework == "vite" ? "src/index.css" : config.paths.styles;
35
35
  const stylesPath = path.resolve(cwd, globalPath);
36
36
  const existingStyles = (await fileExists(stylesPath))
37
37
  ? await readFile(stylesPath)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trix-ui",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Lite UI CLI, registry tooling, and templates.",
5
5
  "license": "MIT",
6
6
  "type": "module",