0.1.1
What's Changed
- fix(cli): normalize windows paths for
fast-glob
by @AriPerkkio in #184- Existing projects can apply the fix in their
uno.config.ts
:export default defineConfig({ ...unoCSSConfig, content: { inline: globSync([ - `${convertPathToPattern(join(require.resolve('@tutorialkit/components-react'), '..'))}/**/*.js`, + `${convertPathToPattern(join(require.resolve('@tutorialkit/components-react'), '..')).replace('\\@', '/@')}/**/*.js`, - `${convertPathToPattern(join(require.resolve('@tutorialkit/astro'), '..'))}/default/**/*.astro`, + `${convertPathToPattern(join(require.resolve('@tutorialkit/astro'), '..')).replace('\\@', '/@')}/default/**/*.astro`, ]).map((filePath) => { return () => fs.readFile(filePath, { encoding: 'utf8' }); }), },
- Existing projects can apply the fix in their
New Contributors
- @mannycarrera4 made their first contribution in #177
Full Changelog: 0.1.0...0.1.1