File tree 11 files changed +98
-91
lines changed
11 files changed +98
-91
lines changed Original file line number Diff line number Diff line change 2
2
3
3
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.
4
4
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
+
5
12
## [ 7.1.0] ( https://github.com/AnthonyLzq/simba.js/compare/v7.0.2...v7.1.0 ) (2022-10-24)
6
13
7
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @anthonylzq/simba.js" ,
3
- "version" : " 7.1 .0" ,
3
+ "version" : " 7.2 .0" ,
4
4
"description" : " set up a modern backend app by running one command" ,
5
5
"main" : " lib/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── src
6
+ │ ├── @types
7
+ │ │ ├── custom
8
+ │ │ │ ├── request.d.ts
9
+ │ │ │ └── response.d.ts
10
+ │ │ ├── graphQL
11
+ │ │ │ └── context.d.ts
12
+ │ │ └── index.d.ts
6
13
│ ├── database
7
14
│ │ ├── migrations
8
15
│ │ ├── postgres
20
27
│ │ ├── models
21
28
│ │ │ ├── User
22
29
│ │ │ │ ├── index.ts
23
- │ │ │ │ ├── mutationsResolver.ts
24
30
│ │ │ │ ├── mutations.ts
25
- │ │ │ │ ├── queriesResolver .ts
31
+ │ │ │ │ ├── mutationsResolver .ts
26
32
│ │ │ │ ├── queries.ts
33
+ │ │ │ │ ├── queriesResolver.ts
27
34
│ │ │ │ └── typeDefs.ts
28
35
│ │ │ ├── utils
29
36
│ │ │ │ ├── messages
47
54
│ │ └── user.ts
48
55
│ ├── scripts
49
56
│ │ └── migration.ts
50
- │ ├── @types
51
- │ │ ├── custom
52
- │ │ │ ├── request.d.ts
53
- │ │ │ └── response.d.ts
54
- │ │ ├── graphQL
55
- │ │ │ └── context.d.ts
56
- │ │ └── index.d.ts
57
57
│ ├── utils
58
58
│ │ ├── docs.json
59
59
│ │ └── index.ts
62
62
│ ├── index.test.ts
63
63
│ ├── jestGlobalSetup.ts
64
64
│ └── setEnvVars.ts
65
- ├── CHANGELOG.md
66
- ├── Dockerfile
67
65
├── .dockerignore
68
66
├── .env
69
67
├── .eslintignore
70
68
├── .eslintrc
71
69
├── .gitignore
70
+ ├── .sequelizerc
71
+ ├── CHANGELOG.md
72
+ ├── Dockerfile
73
+ ├── LICENSE
74
+ ├── README.md
72
75
├── heroku.yml
73
76
├── index.http
74
77
├── jest.config.ts
75
- ├── LICENSE
76
78
├── package.json
77
- ├── README.md
78
- ├── .sequelizerc
79
79
├── tsconfig.base.json
80
80
├── tsconfig.json
81
81
├── webpack.config.js
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── 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
6
15
│ ├── database
7
16
│ │ ├── mongo
8
17
│ │ │ ├── models
18
27
│ │ ├── models
19
28
│ │ │ ├── User
20
29
│ │ │ │ ├── index.ts
21
- │ │ │ │ ├── mutationsResolver.ts
22
30
│ │ │ │ ├── mutations.ts
23
- │ │ │ │ ├── queriesResolver .ts
31
+ │ │ │ │ ├── mutationsResolver .ts
24
32
│ │ │ │ ├── queries.ts
33
+ │ │ │ │ ├── queriesResolver.ts
25
34
│ │ │ │ └── typeDefs.ts
26
35
│ │ │ ├── utils
27
36
│ │ │ │ ├── messages
43
52
│ ├── schemas
44
53
│ │ ├── index.ts
45
54
│ │ └── 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
55
55
│ ├── utils
56
56
│ │ ├── docs.json
57
57
│ │ └── index.ts
60
60
│ ├── index.test.ts
61
61
│ ├── jestGlobalSetup.ts
62
62
│ └── setEnvVars.ts
63
- ├── CHANGELOG.md
64
- ├── Dockerfile
65
63
├── .dockerignore
66
64
├── .env
67
65
├── .eslintignore
68
66
├── .eslintrc
69
67
├── .gitignore
68
+ ├── CHANGELOG.md
69
+ ├── Dockerfile
70
+ ├── LICENSE
71
+ ├── README.md
70
72
├── heroku.yml
71
73
├── index.http
72
74
├── jest.config.ts
73
- ├── LICENSE
74
75
├── package.json
75
- ├── README.md
76
76
├── tsconfig.base.json
77
77
├── tsconfig.json
78
78
├── webpack.config.js
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── src
6
+ │ ├── @types
7
+ │ │ ├── custom
8
+ │ │ │ ├── request.d.ts
9
+ │ │ │ └── response.d.ts
10
+ │ │ └── index.d.ts
6
11
│ ├── database
7
12
│ │ ├── migrations
8
13
│ │ ├── postgres
40
45
│ │ │ └── index.ts
41
46
│ │ ├── index.ts
42
47
│ │ └── user.ts
43
- │ ├── @types
44
- │ │ ├── custom
45
- │ │ │ ├── request.d.ts
46
- │ │ │ └── response.d.ts
47
- │ │ └── index.d.ts
48
48
│ ├── utils
49
49
│ │ ├── docs.json
50
50
│ │ └── index.ts
53
53
│ ├── index.test.ts
54
54
│ ├── jestGlobalSetup.ts
55
55
│ └── setEnvVars.ts
56
- ├── CHANGELOG.md
57
- ├── Dockerfile
58
56
├── .dockerignore
59
57
├── .env
60
58
├── .eslintignore
61
59
├── .eslintrc
62
60
├── .gitignore
61
+ ├── .sequelizerc
62
+ ├── CHANGELOG.md
63
+ ├── Dockerfile
64
+ ├── LICENSE
65
+ ├── README.md
63
66
├── heroku.yml
64
67
├── index.http
65
68
├── jest.config.ts
66
- ├── LICENSE
67
69
├── package.json
68
- ├── README.md
69
- ├── .sequelizerc
70
70
├── tsconfig.base.json
71
71
├── tsconfig.json
72
72
├── webpack.config.js
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── src
6
+ │ ├── @types
7
+ │ │ ├── custom
8
+ │ │ │ ├── request.d.ts
9
+ │ │ │ └── response.d.ts
10
+ │ │ ├── models
11
+ │ │ │ └── user.d.ts
12
+ │ │ └── index.d.ts
6
13
│ ├── database
7
14
│ │ ├── mongo
8
15
│ │ │ ├── models
36
43
│ │ │ └── index.ts
37
44
│ │ ├── index.ts
38
45
│ │ └── user.ts
39
- │ ├── @types
40
- │ │ ├── custom
41
- │ │ │ ├── request.d.ts
42
- │ │ │ └── response.d.ts
43
- │ │ ├── models
44
- │ │ │ └── user.d.ts
45
- │ │ └── index.d.ts
46
46
│ ├── utils
47
47
│ │ ├── docs.json
48
48
│ │ └── index.ts
51
51
│ ├── index.test.ts
52
52
│ ├── jestGlobalSetup.ts
53
53
│ └── setEnvVars.ts
54
- ├── CHANGELOG.md
55
- ├── Dockerfile
56
54
├── .dockerignore
57
55
├── .env
58
56
├── .eslintignore
59
57
├── .eslintrc
60
58
├── .gitignore
59
+ ├── CHANGELOG.md
60
+ ├── Dockerfile
61
+ ├── LICENSE
62
+ ├── README.md
61
63
├── heroku.yml
62
64
├── index.http
63
65
├── jest.config.ts
64
- ├── LICENSE
65
66
├── package.json
66
- ├── README.md
67
67
├── tsconfig.base.json
68
68
├── tsconfig.json
69
69
├── webpack.config.js
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── src
6
+ │ ├── @types
7
+ │ │ ├── graphQL
8
+ │ │ │ └── context.d.ts
9
+ │ │ └── index.d.ts
6
10
│ ├── database
7
11
│ │ ├── postgres
8
12
│ │ │ ├── migrations
20
24
│ │ ├── models
21
25
│ │ │ ├── User
22
26
│ │ │ │ ├── index.ts
23
- │ │ │ │ ├── mutationsResolver.ts
24
27
│ │ │ │ ├── mutations.ts
25
- │ │ │ │ ├── queriesResolver .ts
28
+ │ │ │ │ ├── mutationsResolver .ts
26
29
│ │ │ │ ├── queries.ts
30
+ │ │ │ │ ├── queriesResolver.ts
27
31
│ │ │ │ └── typeDefs.ts
28
32
│ │ │ ├── utils
29
33
│ │ │ │ ├── messages
48
52
│ │ └── user.ts
49
53
│ ├── scripts
50
54
│ │ └── migration.ts
51
- │ ├── @types
52
- │ │ ├── graphQL
53
- │ │ │ └── context.d.ts
54
- │ │ └── index.d.ts
55
55
│ └── index.ts
56
56
├── test
57
57
│ ├── index.test.ts
58
58
│ ├── jestGlobalSetup.ts
59
59
│ └── setEnvVars.ts
60
- ├── CHANGELOG.md
61
- ├── Dockerfile
62
60
├── .dockerignore
63
61
├── .env
64
62
├── .eslintignore
65
63
├── .eslintrc
66
64
├── .gitignore
65
+ ├── .sequelizerc
66
+ ├── CHANGELOG.md
67
+ ├── Dockerfile
68
+ ├── LICENSE
69
+ ├── README.md
67
70
├── heroku.yml
68
71
├── index.http
69
72
├── jest.config.ts
70
- ├── LICENSE
71
73
├── package.json
72
- ├── README.md
73
- ├── .sequelizerc
74
74
├── tsconfig.base.json
75
75
├── tsconfig.json
76
76
├── webpack.config.js
Original file line number Diff line number Diff line change 3
3
│ ├── lint.yml
4
4
│ └── test.yml
5
5
├── src
6
+ │ ├── @types
7
+ │ │ ├── graphQL
8
+ │ │ │ └── context.d.ts
9
+ │ │ ├── models
10
+ │ │ │ └── user.d.ts
11
+ │ │ └── index.d.ts
6
12
│ ├── database
7
13
│ │ ├── mongo
8
14
│ │ │ ├── models
18
24
│ │ ├── models
19
25
│ │ │ ├── User
20
26
│ │ │ │ ├── index.ts
21
- │ │ │ │ ├── mutationsResolver.ts
22
27
│ │ │ │ ├── mutations.ts
23
- │ │ │ │ ├── queriesResolver .ts
28
+ │ │ │ │ ├── mutationsResolver .ts
24
29
│ │ │ │ ├── queries.ts
30
+ │ │ │ │ ├── queriesResolver.ts
25
31
│ │ │ │ └── typeDefs.ts
26
32
│ │ │ ├── utils
27
33
│ │ │ │ ├── messages
44
50
│ ├── schemas
45
51
│ │ ├── index.ts
46
52
│ │ └── user.ts
47
- │ ├── @types
48
- │ │ ├── graphQL
49
- │ │ │ └── context.d.ts
50
- │ │ ├── models
51
- │ │ │ └── user.d.ts
52
- │ │ └── index.d.ts
53
53
│ └── index.ts
54
54
├── test
55
55
│ ├── index.test.ts
56
56
│ ├── jestGlobalSetup.ts
57
57
│ └── setEnvVars.ts
58
- ├── CHANGELOG.md
59
- ├── Dockerfile
60
58
├── .dockerignore
61
59
├── .env
62
60
├── .eslintignore
63
61
├── .eslintrc
64
62
├── .gitignore
63
+ ├── CHANGELOG.md
64
+ ├── Dockerfile
65
+ ├── LICENSE
66
+ ├── README.md
65
67
├── heroku.yml
66
68
├── index.http
67
69
├── jest.config.ts
68
- ├── LICENSE
69
70
├── package.json
70
- ├── README.md
71
71
├── tsconfig.base.json
72
72
├── tsconfig.json
73
73
├── webpack.config.js
You can’t perform that action at this time.
0 commit comments