Skip to content

Releases: stackblitz/tutorialkit

0.1.2

01 Aug 08:06
a3e9f2a
Compare
Choose a tag to compare

What's Changed

  • fix: ignore templates node_modules by @AriPerkkio in #198
    • Fixes cases where having node_modules present on template directories caused jsh: permission denied errors.

Full Changelog: 0.1.1...0.1.2

0.1.1

30 Jul 05:53
ad74b29
Compare
Choose a tag to compare

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' });
          }),
        },

New Contributors

Full Changelog: 0.1.0...0.1.1

0.1.0

25 Jul 13:06
79aec53
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.0.3...0.1.0