Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contributing back all current updates of my fork #933

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3936eca
fixed tests
spicemc Oct 21, 2022
e29f885
fixed transform signature
spicemc Oct 21, 2022
618738e
Merge pull request #1 from spicemc/fix/tests
spicemc Oct 21, 2022
8eecad0
express,express-session,cookie updated
spicemc Oct 21, 2022
e877166
glob updated
spicemc Oct 21, 2022
3037e4a
types for express, express-session updated
spicemc Oct 21, 2022
4936a05
fixed tests. upgraded dependencies. class-transformer fixes. test tsc…
spicemc Oct 22, 2022
88209f1
Merge pull request #2 from spicemc/update/dependencies
spicemc Oct 22, 2022
8904059
refactored negative parameter is required test
spicemc Oct 22, 2022
8e20494
adjust some project info
spicemc Oct 25, 2022
46a10af
fix httpCode type
spicemc Oct 26, 2022
1a2bbea
update/linter: packages updated. new config files.
spicemc Oct 26, 2022
fae3aa5
Merge pull request #3 from spicemc/update/linter
spicemc Oct 26, 2022
ec230ba
prettier updated
spicemc Oct 26, 2022
d278ea5
Fix/linter errors (#4)
spicemc Nov 4, 2022
97eca3c
update/github-workflows (#5)
spicemc Nov 5, 2022
c226de4
Update/dev dependencies (#6)
spicemc Nov 11, 2022
bf8d3a8
body-parser updated
spicemc Nov 12, 2022
92541f7
release version 1.0.0
spicemc Nov 12, 2022
766aaa2
types path changed to relative (#7)
spicemc Nov 12, 2022
9549792
release v1.0.1
spicemc Nov 12, 2022
d2c5aee
replaced path
spicemc Nov 12, 2022
d214d58
readded Authorized decorator overload
spicemc Nov 12, 2022
d88ceac
readme updated
spicemc Nov 12, 2022
4e84e6f
Update lock-closed-issues-workflow.yml
spicemc Nov 15, 2022
f8526c8
Adjustments to contribute back
spicemc Nov 24, 2022
8410dcf
revert base project README
spicemc Nov 24, 2022
256cb8d
reverted github project url
spicemc Nov 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"no-console": 1, // Means warning
"prettier/prettier": 2, // Means error
"@typescript-eslint/no-explicit-any": "off"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
]
}
34 changes: 0 additions & 34 deletions .eslintrc.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
name: Publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org
- run: npm ci --ignore-scripts
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci --ignore-scripts
- run: npm run prettier:check
- run: npm run lint:check
Expand All @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['10.x', '12.x', '14.x']
node-version: ['14.x', '16.x', '18.x']
fail-fast: false
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Setting up Node.js (v${{ matrix.node-version }}.x)
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --ignore-scripts
Expand All @@ -33,8 +33,8 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci --ignore-scripts
- run: npm run build:es2015
- run: npm run build:cjs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lock-closed-issues-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
name: Lock closed issues
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
- uses: dessant/lock-threads@v3
with:
github-token: ${{ github.token }}
issue-lock-inactive-days: 30
pr-lock-inactive-days: 30
issue-inactive-days: '30'
pr-inactive-days: '30'
issue-lock-comment: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Expand Down
8 changes: 8 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"arrowParens": "avoid"
}
8 changes: 0 additions & 8 deletions .prettierrc.yml

This file was deleted.

32 changes: 17 additions & 15 deletions docs/lang/chinese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
并确认在使用 routing-controllers 前引入

```typescript

```

3. 安装框架:
Expand Down Expand Up @@ -944,23 +945,24 @@ app.listen(3000);

第二种,声明一个类:

```typescript
import { KoaMiddlewareInterface } from 'routing-controllers';

```typescript
import { KoaMiddlewareInterface } from "routing-controllers";

export class MyMiddleware implements KoaMiddlewareInterface { // 接口声明可选

use(context: any, next: (err?: any) => Promise<any>): Promise<any> {
console.log("do something before execution...");
return next().then(() => {
console.log("do something after execution");
}).catch(error => {
console.log("error handling is also here");
});
}
export class MyMiddleware implements KoaMiddlewareInterface {
// 接口声明可选

}
```
use(context: any, next: (err?: any) => Promise<any>): Promise<any> {
console.log('do something before execution...');
return next()
.then(() => {
console.log('do something after execution');
})
.catch(error => {
console.log('error handling is also here');
});
}
}
```

2. 应用:

Expand Down
16 changes: 10 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
collectCoverageFrom: ['src/**/*.ts', '!src/**/index.ts', '!src/**/*.interface.ts'],
globals: {
'ts-jest': {
tsConfig: 'tsconfig.spec.json',
},
},
setupFilesAfterEnv: ["./jest.setup.js"]
globals: {},
setupFilesAfterEnv: ["./jest.setup.js"],
transform: {
'^.+\\.tsx?$': [
'ts-jest',
// required due to custom location of tsconfig.json configuration file
// https://kulshekhar.github.io/ts-jest/docs/getting-started/options/tsconfig
{tsconfig: './tsconfig.spec.json'},
],
}
};
31 changes: 16 additions & 15 deletions lang/chinese/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -952,23 +952,24 @@ app.listen(3000);

第二种,声明一个类:

```typescript
import { KoaMiddlewareInterface } from 'routing-controllers';

```typescript
import { KoaMiddlewareInterface } from "routing-controllers";

export class MyMiddleware implements KoaMiddlewareInterface { // 接口声明可选

use(context: any, next: (err?: any) => Promise<any>): Promise<any> {
console.log("do something before execution...");
return next().then(() => {
console.log("do something after execution");
}).catch(error => {
console.log("error handling is also here");
});
}
export class MyMiddleware implements KoaMiddlewareInterface {
// 接口声明可选

}
```
use(context: any, next: (err?: any) => Promise<any>): Promise<any> {
console.log('do something before execution...');
return next()
.then(() => {
console.log('do something after execution');
})
.catch(error => {
console.log('error handling is also here');
});
}
}
```

2. 应用:

Expand Down
Loading