Skip to content

Commit 6595a54

Browse files
authored
Merge pull request #118 from frouriojs/develop
chore(release): 0.21.2
2 parents f459485 + 7f52043 commit 6595a54

File tree

4 files changed

+150
-160
lines changed

4 files changed

+150
-160
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
### [0.21.2](https://github.com/frouriojs/frourio/compare/v0.21.1...v0.21.2) (2020-12-13)
6+
7+
8+
### Features
9+
10+
* update aspida@1.0.0 ([a28cf4e](https://github.com/frouriojs/frourio/commit/a28cf4e890adc22f84be90201049cb92408574b5))
11+
512
### [0.21.1](https://github.com/frouriojs/frourio/compare/v0.21.0...v0.21.1) (2020-11-29)
613

714

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<br />
2-
<div align="center">
3-
<img src="https://frouriojs.github.io/frourio/assets/images/ogp.png" width="1280" alt="frourio" />
4-
</div>
2+
<img src="https://frouriojs.github.io/frourio/assets/images/ogp.png" width="1280" alt="frourio" />
53

64
<div align="center">
75
<a href="https://www.npmjs.com/package/frourio">
@@ -64,7 +62,7 @@ https://frourio.io/docs
6462
- [Controller level hooks](#Hooks-ctrl)
6563
- [Validation](#Validation)
6664
- [Deployment](#Deployment)
67-
- [Frontend](#Deployment-frontend)
65+
- [Client](#Deployment-client)
6866
- [Server](#Deployment-server)
6967
- [Dependency Injection](#DI)
7068
- [License](#License)
@@ -357,16 +355,16 @@ HTTP/1.1 401 Unauthorized
357355
## Deployment
358356

359357
Frourio is complete in one directory, but not monolithic.
360-
Frontend and server are just statically connected by a type and are separate projects.
358+
Client and server are just statically connected by a type and are separate projects.
361359
So they can be deployed in different environments.
362360

363-
<a id="Deployment-frontend"></a>
361+
<a id="Deployment-client"></a>
364362

365-
### Frontend
363+
### Client
366364

367365
```sh
368-
$ npm run build:front
369-
$ npm run start:front
366+
$ npm run build:client
367+
$ npm run start:client
370368
```
371369

372370
<a id="Deployment-server"></a>

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frourio",
3-
"version": "0.21.1",
3+
"version": "0.21.2",
44
"description": "Fast and type-safe full stack framework, for TypeScript",
55
"author": "Solufa <solufa2020@gmail.com>",
66
"license": "MIT",
@@ -83,35 +83,35 @@
8383
]
8484
},
8585
"dependencies": {
86-
"aspida": "^0.22.2",
86+
"aspida": "^1.0.0",
8787
"velona": "^0.5.1"
8888
},
8989
"devDependencies": {
90-
"@aspida/axios": "^0.12.2",
90+
"@aspida/axios": "^1.0.0",
9191
"@types/busboy": "^0.2.3",
92-
"@types/jest": "^26.0.15",
92+
"@types/jest": "^26.0.19",
9393
"@types/rimraf": "^3.0.0",
94-
"@typescript-eslint/eslint-plugin": "^4.8.2",
95-
"@typescript-eslint/parser": "^4.8.2",
94+
"@typescript-eslint/eslint-plugin": "^4.9.1",
95+
"@typescript-eslint/parser": "^4.9.1",
9696
"axios": "^0.21.0",
9797
"class-validator": "^0.12.2",
98-
"eslint": "^7.14.0",
99-
"eslint-config-prettier": "^6.15.0",
98+
"eslint": "^7.15.0",
99+
"eslint-config-prettier": "^7.0.0",
100100
"eslint-config-standard": "^16.0.2",
101101
"eslint-plugin-import": "^2.22.1",
102102
"eslint-plugin-jest": "^24.1.3",
103103
"eslint-plugin-node": "^11.1.0",
104-
"eslint-plugin-prettier": "^3.1.4",
104+
"eslint-plugin-prettier": "^3.2.0",
105105
"eslint-plugin-promise": "^4.2.1",
106106
"eslint-plugin-standard": "^5.0.0",
107-
"fastify": "^3.8.0",
108-
"fastify-multipart": "^3.3.0",
107+
"fastify": "^3.9.1",
108+
"fastify-multipart": "^3.3.1",
109109
"form-data": "^3.0.0",
110110
"jest": "^26.6.3",
111-
"prettier": "^2.2.0",
111+
"prettier": "^2.2.1",
112112
"rimraf": "^3.0.2",
113113
"standard-version": "^9.0.0",
114114
"ts-jest": "^26.4.4",
115-
"typescript": "^4.1.2"
115+
"typescript": "^4.1.3"
116116
}
117117
}

0 commit comments

Comments
 (0)