Skip to content

Commit 4dceb09

Browse files
committed
7.2.0
1 parent bbf2648 commit 4dceb09

11 files changed

+98
-91
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [7.2.0](https://github.com/AnthonyLzq/simba.js/compare/v7.1.0...v7.2.0) (2023-03-12)
6+
7+
8+
### Features
9+
10+
* making simba.js logo static ([bbf2648](https://github.com/AnthonyLzq/simba.js/commit/bbf26489a30c3471f0665501799b51ddd3cd58e2))
11+
512
## [7.1.0](https://github.com/AnthonyLzq/simba.js/compare/v7.0.2...v7.1.0) (2022-10-24)
613

714

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anthonylzq/simba.js",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"description": "set up a modern backend app by running one command",
55
"main": "lib/index.js",
66
"scripts": {

projectStructureExamples/express-graphql-sequelize.txt

+14-14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── custom
8+
│   │   │   ├── request.d.ts
9+
│   │   │   └── response.d.ts
10+
│   │   ├── graphQL
11+
│   │   │   └── context.d.ts
12+
│   │   └── index.d.ts
613
│   ├── database
714
│   │   ├── migrations
815
│   │   ├── postgres
@@ -20,10 +27,10 @@
2027
│   │   ├── models
2128
│   │   │   ├── User
2229
│   │   │   │   ├── index.ts
23-
│   │   │   │   ├── mutationsResolver.ts
2430
│   │   │   │   ├── mutations.ts
25-
│   │   │   │   ├── queriesResolver.ts
31+
│   │   │   │   ├── mutationsResolver.ts
2632
│   │   │   │   ├── queries.ts
33+
│   │   │   │   ├── queriesResolver.ts
2734
│   │   │   │   └── typeDefs.ts
2835
│   │   │   ├── utils
2936
│   │   │   │   ├── messages
@@ -47,13 +54,6 @@
4754
│   │   └── user.ts
4855
│   ├── scripts
4956
│   │   └── migration.ts
50-
│   ├── @types
51-
│   │   ├── custom
52-
│   │   │   ├── request.d.ts
53-
│   │   │   └── response.d.ts
54-
│   │   ├── graphQL
55-
│   │   │   └── context.d.ts
56-
│   │   └── index.d.ts
5757
│   ├── utils
5858
│   │   ├── docs.json
5959
│   │   └── index.ts
@@ -62,20 +62,20 @@
6262
│   ├── index.test.ts
6363
│   ├── jestGlobalSetup.ts
6464
│   └── setEnvVars.ts
65-
├── CHANGELOG.md
66-
├── Dockerfile
6765
├── .dockerignore
6866
├── .env
6967
├── .eslintignore
7068
├── .eslintrc
7169
├── .gitignore
70+
├── .sequelizerc
71+
├── CHANGELOG.md
72+
├── Dockerfile
73+
├── LICENSE
74+
├── README.md
7275
├── heroku.yml
7376
├── index.http
7477
├── jest.config.ts
75-
├── LICENSE
7678
├── package.json
77-
├── README.md
78-
├── .sequelizerc
7979
├── tsconfig.base.json
8080
├── tsconfig.json
8181
├── webpack.config.js

projectStructureExamples/express-graphql.txt

+15-15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── custom
8+
│   │   │   ├── request.d.ts
9+
│   │   │   └── response.d.ts
10+
│   │   ├── graphQL
11+
│   │   │   └── context.d.ts
12+
│   │   ├── models
13+
│   │   │   └── user.d.ts
14+
│   │   └── index.d.ts
615
│   ├── database
716
│   │   ├── mongo
817
│   │   │   ├── models
@@ -18,10 +27,10 @@
1827
│   │   ├── models
1928
│   │   │   ├── User
2029
│   │   │   │   ├── index.ts
21-
│   │   │   │   ├── mutationsResolver.ts
2230
│   │   │   │   ├── mutations.ts
23-
│   │   │   │   ├── queriesResolver.ts
31+
│   │   │   │   ├── mutationsResolver.ts
2432
│   │   │   │   ├── queries.ts
33+
│   │   │   │   ├── queriesResolver.ts
2534
│   │   │   │   └── typeDefs.ts
2635
│   │   │   ├── utils
2736
│   │   │   │   ├── messages
@@ -43,15 +52,6 @@
4352
│   ├── schemas
4453
│   │   ├── index.ts
4554
│   │   └── user.ts
46-
│   ├── @types
47-
│   │   ├── custom
48-
│   │   │   ├── request.d.ts
49-
│   │   │   └── response.d.ts
50-
│   │   ├── graphQL
51-
│   │   │   └── context.d.ts
52-
│   │   ├── models
53-
│   │   │   └── user.d.ts
54-
│   │   └── index.d.ts
5555
│   ├── utils
5656
│   │   ├── docs.json
5757
│   │   └── index.ts
@@ -60,19 +60,19 @@
6060
│   ├── index.test.ts
6161
│   ├── jestGlobalSetup.ts
6262
│   └── setEnvVars.ts
63-
├── CHANGELOG.md
64-
├── Dockerfile
6563
├── .dockerignore
6664
├── .env
6765
├── .eslintignore
6866
├── .eslintrc
6967
├── .gitignore
68+
├── CHANGELOG.md
69+
├── Dockerfile
70+
├── LICENSE
71+
├── README.md
7072
├── heroku.yml
7173
├── index.http
7274
├── jest.config.ts
73-
├── LICENSE
7475
├── package.json
75-
├── README.md
7676
├── tsconfig.base.json
7777
├── tsconfig.json
7878
├── webpack.config.js

projectStructureExamples/express-sequelize.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── custom
8+
│   │   │   ├── request.d.ts
9+
│   │   │   └── response.d.ts
10+
│   │   └── index.d.ts
611
│   ├── database
712
│   │   ├── migrations
813
│   │   ├── postgres
@@ -40,11 +45,6 @@
4045
│   │   │   └── index.ts
4146
│   │   ├── index.ts
4247
│   │   └── user.ts
43-
│   ├── @types
44-
│   │   ├── custom
45-
│   │   │   ├── request.d.ts
46-
│   │   │   └── response.d.ts
47-
│   │   └── index.d.ts
4848
│   ├── utils
4949
│   │   ├── docs.json
5050
│   │   └── index.ts
@@ -53,20 +53,20 @@
5353
│   ├── index.test.ts
5454
│   ├── jestGlobalSetup.ts
5555
│   └── setEnvVars.ts
56-
├── CHANGELOG.md
57-
├── Dockerfile
5856
├── .dockerignore
5957
├── .env
6058
├── .eslintignore
6159
├── .eslintrc
6260
├── .gitignore
61+
├── .sequelizerc
62+
├── CHANGELOG.md
63+
├── Dockerfile
64+
├── LICENSE
65+
├── README.md
6366
├── heroku.yml
6467
├── index.http
6568
├── jest.config.ts
66-
├── LICENSE
6769
├── package.json
68-
├── README.md
69-
├── .sequelizerc
7070
├── tsconfig.base.json
7171
├── tsconfig.json
7272
├── webpack.config.js

projectStructureExamples/express.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── custom
8+
│   │   │   ├── request.d.ts
9+
│   │   │   └── response.d.ts
10+
│   │   ├── models
11+
│   │   │   └── user.d.ts
12+
│   │   └── index.d.ts
613
│   ├── database
714
│   │   ├── mongo
815
│   │   │   ├── models
@@ -36,13 +43,6 @@
3643
│   │   │   └── index.ts
3744
│   │   ├── index.ts
3845
│   │   └── user.ts
39-
│   ├── @types
40-
│   │   ├── custom
41-
│   │   │   ├── request.d.ts
42-
│   │   │   └── response.d.ts
43-
│   │   ├── models
44-
│   │   │   └── user.d.ts
45-
│   │   └── index.d.ts
4646
│   ├── utils
4747
│   │   ├── docs.json
4848
│   │   └── index.ts
@@ -51,19 +51,19 @@
5151
│   ├── index.test.ts
5252
│   ├── jestGlobalSetup.ts
5353
│   └── setEnvVars.ts
54-
├── CHANGELOG.md
55-
├── Dockerfile
5654
├── .dockerignore
5755
├── .env
5856
├── .eslintignore
5957
├── .eslintrc
6058
├── .gitignore
59+
├── CHANGELOG.md
60+
├── Dockerfile
61+
├── LICENSE
62+
├── README.md
6163
├── heroku.yml
6264
├── index.http
6365
├── jest.config.ts
64-
├── LICENSE
6566
├── package.json
66-
├── README.md
6767
├── tsconfig.base.json
6868
├── tsconfig.json
6969
├── webpack.config.js

projectStructureExamples/fastify-graphql-sequelize.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── graphQL
8+
│   │   │   └── context.d.ts
9+
│   │   └── index.d.ts
610
│   ├── database
711
│   │   ├── postgres
812
│   │   │   ├── migrations
@@ -20,10 +24,10 @@
2024
│   │   ├── models
2125
│   │   │   ├── User
2226
│   │   │   │   ├── index.ts
23-
│   │   │   │   ├── mutationsResolver.ts
2427
│   │   │   │   ├── mutations.ts
25-
│   │   │   │   ├── queriesResolver.ts
28+
│   │   │   │   ├── mutationsResolver.ts
2629
│   │   │   │   ├── queries.ts
30+
│   │   │   │   ├── queriesResolver.ts
2731
│   │   │   │   └── typeDefs.ts
2832
│   │   │   ├── utils
2933
│   │   │   │   ├── messages
@@ -48,29 +52,25 @@
4852
│   │   └── user.ts
4953
│   ├── scripts
5054
│   │   └── migration.ts
51-
│   ├── @types
52-
│   │   ├── graphQL
53-
│   │   │   └── context.d.ts
54-
│   │   └── index.d.ts
5555
│   └── index.ts
5656
├── test
5757
│   ├── index.test.ts
5858
│   ├── jestGlobalSetup.ts
5959
│   └── setEnvVars.ts
60-
├── CHANGELOG.md
61-
├── Dockerfile
6260
├── .dockerignore
6361
├── .env
6462
├── .eslintignore
6563
├── .eslintrc
6664
├── .gitignore
65+
├── .sequelizerc
66+
├── CHANGELOG.md
67+
├── Dockerfile
68+
├── LICENSE
69+
├── README.md
6770
├── heroku.yml
6871
├── index.http
6972
├── jest.config.ts
70-
├── LICENSE
7173
├── package.json
72-
├── README.md
73-
├── .sequelizerc
7474
├── tsconfig.base.json
7575
├── tsconfig.json
7676
├── webpack.config.js

projectStructureExamples/fastify-graphql.txt

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
│   ├── lint.yml
44
│   └── test.yml
55
├── src
6+
│   ├── @types
7+
│   │   ├── graphQL
8+
│   │   │   └── context.d.ts
9+
│   │   ├── models
10+
│   │   │   └── user.d.ts
11+
│   │   └── index.d.ts
612
│   ├── database
713
│   │   ├── mongo
814
│   │   │   ├── models
@@ -18,10 +24,10 @@
1824
│   │   ├── models
1925
│   │   │   ├── User
2026
│   │   │   │   ├── index.ts
21-
│   │   │   │   ├── mutationsResolver.ts
2227
│   │   │   │   ├── mutations.ts
23-
│   │   │   │   ├── queriesResolver.ts
28+
│   │   │   │   ├── mutationsResolver.ts
2429
│   │   │   │   ├── queries.ts
30+
│   │   │   │   ├── queriesResolver.ts
2531
│   │   │   │   └── typeDefs.ts
2632
│   │   │   ├── utils
2733
│   │   │   │   ├── messages
@@ -44,30 +50,24 @@
4450
│   ├── schemas
4551
│   │   ├── index.ts
4652
│   │   └── user.ts
47-
│   ├── @types
48-
│   │   ├── graphQL
49-
│   │   │   └── context.d.ts
50-
│   │   ├── models
51-
│   │   │   └── user.d.ts
52-
│   │   └── index.d.ts
5353
│   └── index.ts
5454
├── test
5555
│   ├── index.test.ts
5656
│   ├── jestGlobalSetup.ts
5757
│   └── setEnvVars.ts
58-
├── CHANGELOG.md
59-
├── Dockerfile
6058
├── .dockerignore
6159
├── .env
6260
├── .eslintignore
6361
├── .eslintrc
6462
├── .gitignore
63+
├── CHANGELOG.md
64+
├── Dockerfile
65+
├── LICENSE
66+
├── README.md
6567
├── heroku.yml
6668
├── index.http
6769
├── jest.config.ts
68-
├── LICENSE
6970
├── package.json
70-
├── README.md
7171
├── tsconfig.base.json
7272
├── tsconfig.json
7373
├── webpack.config.js

0 commit comments

Comments
 (0)