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

release: Adonis v5 alpha #61

Merged
merged 35 commits into from
Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fe97bb1
feat: Start migration to Adonis v5
RodolfoSilva Sep 6, 2020
9addf7c
Update README.md
LeCoupa Sep 25, 2020
1fc7cb6
chore: Upgrade bull-board
fhugoduarte Jan 20, 2021
e3d5293
chore: Commands improvement
fhugoduarte Jan 20, 2021
c2f35b5
fix: Connections config
fhugoduarte Jan 20, 2021
1a4ccdd
chore: Improve invoke command
fhugoduarte Jan 20, 2021
4af6d91
fix: Fix schedule method
fhugoduarte Jan 20, 2021
0321df1
chore: Create test-helpers
fhugoduarte Jan 20, 2021
b132015
chore: Change connections env names
fhugoduarte Jan 21, 2021
e709b34
chore: Add ExceptionHandler documentation
fhugoduarte Jan 21, 2021
4394d95
chore: define which files are covered
HigoRibeiro Jan 22, 2021
65c6934
chore: improve the setup application test
HigoRibeiro Jan 22, 2021
b950076
feat: add event listener into bull class
HigoRibeiro Jan 22, 2021
60cab5e
test: add event listener tests, improve some old tests
HigoRibeiro Jan 22, 2021
7abcb81
fix: remove unnecessary log
HigoRibeiro Jan 22, 2021
ac7738f
feat: add the make exception command
HigoRibeiro Jan 22, 2021
44258f1
chore: export some bullmq types
HigoRibeiro Jan 22, 2021
ecd054c
fix: package.json type path; wrong export interface
HigoRibeiro Jan 25, 2021
2677d05
ci: Stop running tests on Node.js 8
jpedroschmitz Jan 21, 2021
444ef78
chore: Create Issue and PR templates
jpedroschmitz Jan 21, 2021
83044fa
chore: Create codeowners file
jpedroschmitz Jan 21, 2021
d7e8604
chore(deps): Bump lodash from 4.17.15 to 4.17.19
dependabot[bot] Jul 17, 2020
087bb7d
chore(deps): Bump highlight.js from 9.17.1 to 9.18.5
dependabot[bot] Nov 25, 2020
7762cdb
chore: Configure commitlint and lint-staged
jpedroschmitz Jan 21, 2021
4009366
chore: Add OSS guidelines
jpedroschmitz Jan 21, 2021
915d366
chore: Create .editorconfig
jpedroschmitz Jan 21, 2021
c420eaf
chore: Add Prettier and update ESLint packages
jpedroschmitz Jan 21, 2021
545ce91
style: Run Prettier on JavaScript files
jpedroschmitz Jan 21, 2021
fb30aae
ci: Create commit and lint workflows
jpedroschmitz Jan 21, 2021
4bfd0b8
chore: Run prettier on all files
jpedroschmitz Jan 26, 2021
722e6d2
chore: Include @fhugoduarte as a codeowner
jpedroschmitz Jan 26, 2021
c63a4f4
chore: Run Prettier, lint-staged and japa on .ts files
jpedroschmitz Jan 26, 2021
ed14068
chore: Add publish script
jpedroschmitz Jan 26, 2021
d1e9215
test: Remove console.log
jpedroschmitz Jan 26, 2021
e6e47aa
Merge branch 'alpha' into feature/adonis5-alpha
jpedroschmitz Jan 26, 2021
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
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
parser: '@typescript-eslint/parser',
env: {
es6: true,
node: true,
Expand All @@ -14,5 +15,6 @@ module.exports = {
},
rules: {
'prettier/prettier': 'error',
'no-useless-constructor': 'off',
},
}
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# https://help.github.com/en/articles/about-code-owners

* @jpedroschmitz
*.js @HigoRibeiro
*.ts @HigoRibeiro @fhugoduarte
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,11 @@ test/tmp
test/database


# End of https://www.gitignore.io/api/node
# End of https://www.gitignore.io/api/node

# builds
build

# IDE
.idea
.vscode
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
message='chore(release): %s'
11 changes: 11 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"all": true,
"include": [
"providers/**/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/BullExceptionHandler.ts",
"**/*.spec.ts"
]
}
Loading