Skip to content

Commit 21e93c0

Browse files
authored
Merge pull request #121 from frouriojs/develop
chore(release): 0.21.4
2 parents f0ccd0a + 015c013 commit 21e93c0

File tree

7 files changed

+164
-151
lines changed

7 files changed

+164
-151
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.4](https://github.com/frouriojs/frourio/compare/v0.21.3...v0.21.4) (2020-12-19)
6+
7+
8+
### Bug Fixes
9+
10+
* add types property to package.json ([7f96217](https://github.com/frouriojs/frourio/commit/7f96217d463f55a5608ca28c0a87b8d9af862bcd))
11+
512
### [0.21.3](https://github.com/frouriojs/frourio/compare/v0.21.2...v0.21.3) (2020-12-13)
613

714

__test__/build.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'fs'
22
import { version } from '../package.json'
3-
import { run } from '../src/cli'
3+
import { run } from '../src'
44
import build from '../src/buildServerFile'
55
import aspidaBuild from 'aspida/dist/buildTemplate'
66

bin/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env node
2-
require('../dist/cli').run(process.argv.slice(2))
2+
require('../dist').run(process.argv.slice(2))
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
const { pathsToModuleNameMapper } = require('ts-jest/utils')
2-
const { compilerOptions } = require('./tsconfig')
1+
import type { Config } from '@jest/types'
2+
import { pathsToModuleNameMapper } from 'ts-jest/utils'
3+
import { compilerOptions } from './tsconfig.json'
34

4-
module.exports = {
5+
const config: Config.InitialOptions = {
56
preset: 'ts-jest',
67
testEnvironment: 'node',
78
globals: { Blob: {} },
89
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/' }),
910
coveragePathIgnorePatterns: ['\\$api.ts', 'dist']
1011
}
12+
13+
export default config

package.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "frourio",
3-
"version": "0.21.3",
3+
"version": "0.21.4",
44
"description": "Fast and type-safe full stack framework, for TypeScript",
55
"author": "Solufa <solufa2020@gmail.com>",
66
"license": "MIT",
77
"main": "dist/index.js",
8+
"types": "dist/index.d.ts",
89
"bin": "bin/index.js",
910
"homepage": "https://frourio.io",
1011
"repository": {
@@ -83,35 +84,36 @@
8384
]
8485
},
8586
"dependencies": {
86-
"aspida": "^1.1.0",
87-
"velona": "^0.5.1"
87+
"aspida": "^1.1.1",
88+
"velona": "^0.5.2"
8889
},
8990
"devDependencies": {
90-
"@aspida/axios": "^1.1.0",
91+
"@aspida/axios": "^1.1.1",
9192
"@types/busboy": "^0.2.3",
9293
"@types/jest": "^26.0.19",
9394
"@types/rimraf": "^3.0.0",
94-
"@typescript-eslint/eslint-plugin": "^4.9.1",
95-
"@typescript-eslint/parser": "^4.9.1",
95+
"@typescript-eslint/eslint-plugin": "^4.10.0",
96+
"@typescript-eslint/parser": "^4.10.0",
9697
"axios": "^0.21.0",
9798
"class-validator": "^0.12.2",
98-
"eslint": "^7.15.0",
99-
"eslint-config-prettier": "^7.0.0",
99+
"eslint": "^7.16.0",
100+
"eslint-config-prettier": "^7.1.0",
100101
"eslint-config-standard": "^16.0.2",
101102
"eslint-plugin-import": "^2.22.1",
102103
"eslint-plugin-jest": "^24.1.3",
103104
"eslint-plugin-node": "^11.1.0",
104-
"eslint-plugin-prettier": "^3.2.0",
105+
"eslint-plugin-prettier": "^3.3.0",
105106
"eslint-plugin-promise": "^4.2.1",
106107
"eslint-plugin-standard": "^5.0.0",
107-
"fastify": "^3.9.1",
108+
"fastify": "^3.9.2",
108109
"fastify-multipart": "^3.3.1",
109110
"form-data": "^3.0.0",
110111
"jest": "^26.6.3",
111112
"prettier": "^2.2.1",
112113
"rimraf": "^3.0.2",
113114
"standard-version": "^9.0.0",
114115
"ts-jest": "^26.4.4",
116+
"ts-node": "^9.1.1",
115117
"typescript": "^4.1.3"
116118
}
117119
}
File renamed without changes.

0 commit comments

Comments
 (0)