diff --git a/web/docs/general/wasp-ts-config.md b/web/docs/general/wasp-ts-config.md index fd970ff1e7..438c4acba4 100644 --- a/web/docs/general/wasp-ts-config.md +++ b/web/docs/general/wasp-ts-config.md @@ -92,7 +92,7 @@ Wasp TS config is an **early preview** feature, meaning it is a little rough and 8. Run `wasp ts-setup`. This command will add the `wasp-config` package to your `package.json`'s `devDependencies`. 9. Create an empty `main.wasp.ts` file and rewrite your `main.wasp.old` in it but in TypeScript. - Check out the [reference main.wasp.ts file](#reference-main-wasp-ts-file) below for details on what the TypeScript API for configuring Wasp looks like. + Check out the [reference main.wasp.ts file](#reference-mainwaspts-file) below for details on what the TypeScript API for configuring Wasp looks like. In short, you'll have to: 1. Import `App` from `wasp-config` 2. Create a new `app` object with `new App()`. diff --git a/web/docusaurus.config.js b/web/docusaurus.config.js index cbce758f6e..dd33d856cf 100644 --- a/web/docusaurus.config.js +++ b/web/docusaurus.config.js @@ -24,15 +24,15 @@ module.exports = { 'https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap', ], themeConfig: { - announcementBar: { - id: 'LW6', - content: 'Launch Week #6: July 17 - 22 🐝 See what\'s new', + id: 'LW7', + content: + 'Wasp v0.15 is here! 🐝 See what\'s new ⚙ī¸', backgroundColor: '#eab307', textColor: '#fff', isCloseable: false, }, - + imageZoom: { // CSS selector to apply the plugin to, defaults to '.markdown img' //selector: '.markdown img', @@ -168,8 +168,7 @@ module.exports = { // In development, we want "current" docs to be the default docs (served at /docs), // to make it easier for us a bit. Otherwise, by default, the latest versioned docs // will be served under /docs. - lastVersion: - includeCurrentVersion ? 'current' : undefined, + lastVersion: includeCurrentVersion ? 'current' : undefined, // Uncomment line below to build and show only current docs, for faster build times // during development, if/when needed. @@ -292,8 +291,8 @@ module.exports = { }, { from: '/docs/migrate-from-0-13-to-0-14', - to: '/docs/migration-guides/migrate-from-0-13-to-0-14' - } + to: '/docs/migration-guides/migrate-from-0-13-to-0-14', + }, ], }, ], diff --git a/web/src/components/Nav/Announcement.js b/web/src/components/Nav/Announcement.js index 2f845f85e2..0f05ba0ee0 100644 --- a/web/src/components/Nav/Announcement.js +++ b/web/src/components/Nav/Announcement.js @@ -9,7 +9,7 @@ const Announcement = () => { let history = useHistory() const handleLink = () => { - history.push('/blog/2024/07/15/wasp-launch-week-six') + history.push('/blog/2024/09/30/wasp-launch-week-7') // window.open('https://magic-app-generator.wasp-lang.dev/') //window.open('https://www.producthunt.com/posts/open-saas') @@ -43,7 +43,9 @@ const Announcement = () => { `} > - 🐝 Launch Week #6: 🐝 July 17 - 22 + + 🐝 Wasp v0.15 is here! 🐝 + @@ -54,7 +56,7 @@ const Announcement = () => { `} > {/* Generate your app 🤖 → */} - See what's new đŸĒŠ → + See what's new ⚙ī¸ → diff --git a/web/versioned_docs/version-0.15.0/general/wasp-ts-config.md b/web/versioned_docs/version-0.15.0/general/wasp-ts-config.md index fd970ff1e7..438c4acba4 100644 --- a/web/versioned_docs/version-0.15.0/general/wasp-ts-config.md +++ b/web/versioned_docs/version-0.15.0/general/wasp-ts-config.md @@ -92,7 +92,7 @@ Wasp TS config is an **early preview** feature, meaning it is a little rough and 8. Run `wasp ts-setup`. This command will add the `wasp-config` package to your `package.json`'s `devDependencies`. 9. Create an empty `main.wasp.ts` file and rewrite your `main.wasp.old` in it but in TypeScript. - Check out the [reference main.wasp.ts file](#reference-main-wasp-ts-file) below for details on what the TypeScript API for configuring Wasp looks like. + Check out the [reference main.wasp.ts file](#reference-mainwaspts-file) below for details on what the TypeScript API for configuring Wasp looks like. In short, you'll have to: 1. Import `App` from `wasp-config` 2. Create a new `app` object with `new App()`.