Skip to content

Commit 1d147ab

Browse files
committed
update drizzle example and update tsconfig to be ES2020
Signed-off-by: karthik2804 <[email protected]>
1 parent b5b844f commit 1d147ab

File tree

30 files changed

+105
-121
lines changed

30 files changed

+105
-121
lines changed

examples/aws/s3/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/aws/sqs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/blob-storage/backblaze/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/common-patterns/outbound-http/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/common-patterns/routing-requests/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/github/octokit-rest/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"jsx": "react",
88
"skipLibCheck": true,
99
"lib": [
10-
"ES2015",
10+
"ES2020",
1111
"WebWorker"
1212
],
1313
"allowJs": true,

examples/orm/drizzle/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
KNITWIT_SOURCE=./config/knitwit.json

examples/orm/drizzle/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
This example showcases how to use [Drizzle ORM](https://orm.drizzle.team/) to generate database queries and execute it against Spin's SQLite database.
44

5-
## Install Dependencies
6-
Install the necessary npm packages:
7-
8-
```bash
9-
npm install
10-
```
11-
125
## Building and Running the Example
136

147
```bash
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"version": 1,
3+
"project": {
4+
"worlds": [
5+
"spin-http"
6+
]
7+
},
8+
"packages": {}
9+
}

examples/orm/drizzle/knitwit.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)