Skip to content

Commit 8e991b9

Browse files
committed
Merge branch 'release'
2 parents 01af22f + 8115daf commit 8e991b9

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

web/docs/general/wasp-ts-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Wasp TS config is an **early preview** feature, meaning it is a little rough and
9292
8. Run `wasp ts-setup`. This command will add the `wasp-config` package to your `package.json`'s `devDependencies`.
9393
9. Create an empty `main.wasp.ts` file and rewrite your `main.wasp.old` in it but in TypeScript.
9494

95-
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.
95+
Check out the [reference main.wasp.ts file](#reference-mainwaspts-file) below for details on what the TypeScript API for configuring Wasp looks like.
9696
In short, you'll have to:
9797
1. Import `App` from `wasp-config`
9898
2. Create a new `app` object with `new App()`.

web/docusaurus.config.js

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ module.exports = {
2424
'https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap',
2525
],
2626
themeConfig: {
27-
2827
announcementBar: {
29-
id: 'LW6',
30-
content: '<b>Launch Week #6</b>: July 17 - 22 🐝 <a href="/blog/2024/07/15/wasp-launch-week-six">See what\'s new</a>',
28+
id: 'LW7',
29+
content:
30+
'<b>Wasp v0.15 is here!</b> 🐝 <a href="/blog/2024/09/30/wasp-launch-week-7">See what\'s new ⚙️</a>',
3131
backgroundColor: '#eab307',
3232
textColor: '#fff',
3333
isCloseable: false,
3434
},
35-
35+
3636
imageZoom: {
3737
// CSS selector to apply the plugin to, defaults to '.markdown img'
3838
//selector: '.markdown img',
@@ -168,8 +168,7 @@ module.exports = {
168168
// In development, we want "current" docs to be the default docs (served at /docs),
169169
// to make it easier for us a bit. Otherwise, by default, the latest versioned docs
170170
// will be served under /docs.
171-
lastVersion:
172-
includeCurrentVersion ? 'current' : undefined,
171+
lastVersion: includeCurrentVersion ? 'current' : undefined,
173172

174173
// Uncomment line below to build and show only current docs, for faster build times
175174
// during development, if/when needed.
@@ -292,8 +291,8 @@ module.exports = {
292291
},
293292
{
294293
from: '/docs/migrate-from-0-13-to-0-14',
295-
to: '/docs/migration-guides/migrate-from-0-13-to-0-14'
296-
}
294+
to: '/docs/migration-guides/migrate-from-0-13-to-0-14',
295+
},
297296
],
298297
},
299298
],

web/src/components/Nav/Announcement.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Announcement = () => {
99
let history = useHistory()
1010

1111
const handleLink = () => {
12-
history.push('/blog/2024/07/15/wasp-launch-week-six')
12+
history.push('/blog/2024/09/30/wasp-launch-week-7')
1313

1414
// window.open('https://magic-app-generator.wasp-lang.dev/')
1515
//window.open('https://www.producthunt.com/posts/open-saas')
@@ -43,7 +43,9 @@ const Announcement = () => {
4343
`}
4444
>
4545
<span className="item-center flex gap-2 px-3">
46-
<span><b>🐝 Launch Week #6: 🐝</b> July 17 - 22</span>
46+
<span>
47+
<b>🐝 Wasp v0.15 is here! 🐝</b>
48+
</span>
4749
</span>
4850

4951
<span className="hidden items-center space-x-2 px-3 lg:flex">
@@ -54,7 +56,7 @@ const Announcement = () => {
5456
`}
5557
>
5658
{/* Generate your app 🤖 → */}
57-
See what's new 🪩
59+
See what's new ⚙️
5860
</span>
5961
</span>
6062
</div>

web/versioned_docs/version-0.15.0/general/wasp-ts-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Wasp TS config is an **early preview** feature, meaning it is a little rough and
9292
8. Run `wasp ts-setup`. This command will add the `wasp-config` package to your `package.json`'s `devDependencies`.
9393
9. Create an empty `main.wasp.ts` file and rewrite your `main.wasp.old` in it but in TypeScript.
9494

95-
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.
95+
Check out the [reference main.wasp.ts file](#reference-mainwaspts-file) below for details on what the TypeScript API for configuring Wasp looks like.
9696
In short, you'll have to:
9797
1. Import `App` from `wasp-config`
9898
2. Create a new `app` object with `new App()`.

0 commit comments

Comments
 (0)