Astro: [email protected] Release

Release date:
June 23, 2022
Previous version:
[email protected] (released June 22, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in [email protected]

Could not determine top contributors for this release.

Directory Browser for [email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Patch Changes

  • #3685 3d554fdb Thanks @bholmesdev! - Fix PostCSS config not applied to Svelte component by default

  • #3665 9a813268 Thanks @matthewp! - Allow TypeScript inside script tags

    This makes it so that you can use TypeScript inside of script tags like so:

    <script>
      interface Person {
        name: string;
      }
    
      const person: Person = {
        name: 'Astro',
      };
    
      console.log(person);
    </script>
    

    Note that the the VSCode extension does not currently support this, however.

  • #3633 921d9a27 Thanks @FredKSchott! - Fix a bug with astro add react adding a too-complex semver to your package.json

  • #3676 85c33751 Thanks @matthewp! - Allow specifying entryFileNames for client JS