Skip to content

Commit 8f41d94

Browse files
committed
git subrepo pull (merge) apps/swarm-wasp-starter
subrepo: subdir: "apps/swarm-wasp-starter" merged: "68ff317" upstream: origin: "git@github.com:Genyus/swarm-wasp-starter.git" branch: "main" commit: "6ee6b3a" git-subrepo: version: "0.4.9" origin: "https://github.com/ingydotnet/git-subrepo" commit: "ea10886"
1 parent 3c17d77 commit 8f41d94

File tree

5 files changed

+2574
-8017
lines changed

5 files changed

+2574
-8017
lines changed

apps/swarm-wasp-starter/.gitrepo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[subrepo]
77
remote = git@github.com:Genyus/swarm-wasp-starter.git
88
branch = main
9-
commit = bbcc59ddb1a7d7f05d5a92d5fea7dad2f384e942
9+
commit = 6ee6b3a393684e575dc407590aef2ba6428952c4
1010
parent = 3683f2273eea935a72818a7c378ea33de6a14e1b
1111
method = merge
1212
cmdver = 0.4.9

apps/swarm-wasp-starter/README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ src/
5656

5757
### Prerequisites
5858

59-
- Node.js 18+
60-
- pnpm (recommended) or npm
61-
- Wasp CLI installed globally
59+
- Node.js 22+
60+
- npm
61+
- Wasp 0.19.x
6262

6363
### Installation
6464

@@ -72,18 +72,15 @@ src/
7272
cd my-app
7373
```
7474

75-
3. **Install dependencies:**
75+
3. **Install and configure dependencies:**
7676
```bash
7777
npm install
78-
# or
79-
pnpm install
78+
npm run reset:wasp
8079
```
8180

8281
4. **Start the development server:**
8382
```bash
8483
npm run dev
85-
# or
86-
pnpm dev
8784
```
8885

8986
## Generating Code

apps/swarm-wasp-starter/main.wasp.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ import { App } from "@ingenyus/swarm-wasp";
22

33
const app = await App.create("swarm-wasp-starter", {
44
title: "Swarm Wasp Starter",
5-
wasp: { version: "^0.18.2" },
5+
wasp: { version: "^0.19.0" },
66
head: [
77
'<meta name="description" content="Swarm Wasp Starter description">',
88
'<meta name="viewport" content="width=device-width, initial-scale=1.0">',
99
'<meta charset="UTF-8">',
1010
],
1111
});
12+
1213
app.client({
1314
rootComponent: {
1415
importDefault: "Layout",

0 commit comments

Comments
 (0)