Skip to content

Commit dec4df7

Browse files
committed
6.2.1
1 parent fd5ca11 commit dec4df7

7 files changed

+51
-7
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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+
### [6.2.1](https://github.com/AnthonyLzq/simba.js/compare/v6.2.0...v6.2.1) (2022-07-11)
6+
7+
8+
### Features
9+
10+
* implemented linting gha ([788b19d](https://github.com/AnthonyLzq/simba.js/commit/788b19d98ad7530de1db5d1f9d45eea6e5c6fae2))
11+
* updated eslint rules ([ebaa193](https://github.com/AnthonyLzq/simba.js/commit/ebaa19386c39123a2935953edae98f34396fa9f6))
12+
513
## [6.2.0](https://github.com/AnthonyLzq/simba.js/compare/v6.1.0...v6.2.0) (2022-07-08)
614

715

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": "6.2.0",
3+
"version": "6.2.1",
44
"description": "set up a modern backend app by running one command",
55
"main": "lib/index.js",
66
"scripts": {

projectStructureExamples/express-graphql.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
express
22
├── .github
33
│   └── workflows
4+
│   ├── lint.yml
45
│   └── test.yml
56
├── node_modules
67
│   ├── abbrev
@@ -933,7 +934,8 @@ semver
933934
│   │   │   │   │   ├── inference
934935
│   │   │   │   │   │   ├── index.js
935936
│   │   │   │   │   │   ├── inferer-reference.js
936-
│   │   │   │   │   │   └── inferers.js
937+
│   │   │   │   │   │   ├── inferers.js
938+
│   │   │   │   │   │   └── util.js
937939
│   │   │   │   │   ├── lib
938940
│   │   │   │   │   │   ├── hoister.js
939941
│   │   │   │   │   │   ├── removal-hooks.js
@@ -13245,6 +13247,13 @@ semver
1324513247
│   │   │   ├── compiler.js
1324613248
│   │   │   ├── index.d.ts
1324713249
│   │   │   └── index.js
13250+
│   │   ├── conditional
13251+
│   │   │   ├── conditional.d.ts
13252+
│   │   │   ├── conditional.js
13253+
│   │   │   ├── index.d.ts
13254+
│   │   │   ├── index.js
13255+
│   │   │   ├── structural.d.ts
13256+
│   │   │   └── structural.js
1324813257
│   │   ├── guard
1324913258
│   │   │   ├── guard.d.ts
1325013259
│   │   │   ├── guard.js

projectStructureExamples/express.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
express
22
├── .github
33
│   └── workflows
4+
│   ├── lint.yml
45
│   └── test.yml
56
├── node_modules
67
│   ├── abbrev
@@ -933,7 +934,8 @@ semver
933934
│   │   │   │   │   ├── inference
934935
│   │   │   │   │   │   ├── index.js
935936
│   │   │   │   │   │   ├── inferer-reference.js
936-
│   │   │   │   │   │   └── inferers.js
937+
│   │   │   │   │   │   ├── inferers.js
938+
│   │   │   │   │   │   └── util.js
937939
│   │   │   │   │   ├── lib
938940
│   │   │   │   │   │   ├── hoister.js
939941
│   │   │   │   │   │   ├── removal-hooks.js
@@ -13245,6 +13247,13 @@ semver
1324513247
│   │   │   ├── compiler.js
1324613248
│   │   │   ├── index.d.ts
1324713249
│   │   │   └── index.js
13250+
│   │   ├── conditional
13251+
│   │   │   ├── conditional.d.ts
13252+
│   │   │   ├── conditional.js
13253+
│   │   │   ├── index.d.ts
13254+
│   │   │   ├── index.js
13255+
│   │   │   ├── structural.d.ts
13256+
│   │   │   └── structural.js
1324813257
│   │   ├── guard
1324913258
│   │   │   ├── guard.d.ts
1325013259
│   │   │   ├── guard.js

projectStructureExamples/fastify-graphql.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
express
22
├── .github
33
│   └── workflows
4+
│   ├── lint.yml
45
│   └── test.yml
56
├── node_modules
67
│   ├── abbrev
@@ -933,7 +934,8 @@ semver
933934
│   │   │   │   │   ├── inference
934935
│   │   │   │   │   │   ├── index.js
935936
│   │   │   │   │   │   ├── inferer-reference.js
936-
│   │   │   │   │   │   └── inferers.js
937+
│   │   │   │   │   │   ├── inferers.js
938+
│   │   │   │   │   │   └── util.js
937939
│   │   │   │   │   ├── lib
938940
│   │   │   │   │   │   ├── hoister.js
939941
│   │   │   │   │   │   ├── removal-hooks.js
@@ -13245,6 +13247,13 @@ semver
1324513247
│   │   │   ├── compiler.js
1324613248
│   │   │   ├── index.d.ts
1324713249
│   │   │   └── index.js
13250+
│   │   ├── conditional
13251+
│   │   │   ├── conditional.d.ts
13252+
│   │   │   ├── conditional.js
13253+
│   │   │   ├── index.d.ts
13254+
│   │   │   ├── index.js
13255+
│   │   │   ├── structural.d.ts
13256+
│   │   │   └── structural.js
1324813257
│   │   ├── guard
1324913258
│   │   │   ├── guard.d.ts
1325013259
│   │   │   ├── guard.js

projectStructureExamples/fastify.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
express
22
├── .github
33
│   └── workflows
4+
│   ├── lint.yml
45
│   └── test.yml
56
├── node_modules
67
│   ├── abbrev
@@ -933,7 +934,8 @@ semver
933934
│   │   │   │   │   ├── inference
934935
│   │   │   │   │   │   ├── index.js
935936
│   │   │   │   │   │   ├── inferer-reference.js
936-
│   │   │   │   │   │   └── inferers.js
937+
│   │   │   │   │   │   ├── inferers.js
938+
│   │   │   │   │   │   └── util.js
937939
│   │   │   │   │   ├── lib
938940
│   │   │   │   │   │   ├── hoister.js
939941
│   │   │   │   │   │   ├── removal-hooks.js
@@ -13245,6 +13247,13 @@ semver
1324513247
│   │   │   ├── compiler.js
1324613248
│   │   │   ├── index.d.ts
1324713249
│   │   │   └── index.js
13250+
│   │   ├── conditional
13251+
│   │   │   ├── conditional.d.ts
13252+
│   │   │   ├── conditional.js
13253+
│   │   │   ├── index.d.ts
13254+
│   │   │   ├── index.js
13255+
│   │   │   ├── structural.d.ts
13256+
│   │   │   └── structural.js
1324813257
│   │   ├── guard
1324913258
│   │   │   ├── guard.d.ts
1325013259
│   │   │   ├── guard.js

0 commit comments

Comments
 (0)