Skip to content

Commit 018949c

Browse files
committed
refactor: reorganize meta config
1 parent c8725dc commit 018949c

File tree

13 files changed

+66
-61
lines changed

13 files changed

+66
-61
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require('@adonisjs/require-ts/build/register')
22

33
const { configure } = require('japa')
4+
45
configure({
56
files: ['test/**/*.spec.ts'],
67
})

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

CONTRIBUTING.md renamed to .github/CONTRIBUTING.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
AdonisJs is a community driven project. You are free to contribute in any of the following ways.
3+
AdonisJS is a community driven project. You are free to contribute in any of the following ways.
44

55
- [Coding style](coding-style)
66
- [Fix bugs by creating PR's](fix-bugs-by-creating-prs)
@@ -10,7 +10,7 @@ AdonisJs is a community driven project. You are free to contribute in any of the
1010

1111
## Coding style
1212

13-
Majority of AdonisJs core packages are written in Typescript. Having a brief knowledge of Typescript is required to contribute to the core. [Learn more](https://adonisjs.com/coding-style) about the same.
13+
Majority of AdonisJS core packages are written in Typescript. Having a brief knowledge of Typescript is required to contribute to the core.
1414

1515
## Fix bugs by creating PR's
1616

@@ -31,18 +31,16 @@ Sharing PR's for small changes works great. However, when contributing big featu
3131

3232
### What is an RFC?
3333

34-
RFC stands for **Request for Commits**, a standard process followed by many other frameworks including [Ember](https://github.com/emberjs/rfcs), [yarn](https://github.com/yarnpkg/rfcs) and [rust](https://github.com/rust-lang/rfcs).
34+
RFC stands for **Request for Commits**, a standard process followed by many other frameworks including [Ember](https://github.com/emberjs/rfcs), [yarn](https://github.com/yarnpkg/rfcs) and [rust](https://github.com/rust-lang/rfcs).
3535

3636
In brief, RFC process allows you to talk about the changes with everyone in the community and get a view of the core team before dedicating your time to work on the feature.
3737

38-
The RFC proposals are created as issues on [adonisjs/rfcs](https://github.com/adonisjs/rfcs) repo. Make sure to read the README to learn about the process in depth.
38+
The RFC proposals are created as Pull Request on [adonisjs/rfcs](https://github.com/adonisjs/rfcs) repo. Make sure to read the README to learn about the process in depth.
3939

4040
## Report security issues
4141

42-
All of the security issues, must be reported via [email](mailto:[email protected]) and not using any of the public channels. [Learn more](https://adonisjs.com/security) about the security policy
42+
All of the security issues, must be reported via [email](mailto:[email protected]) and not using any of the public channels.
4343

4444
## Be a part of community
4545

46-
We welcome you to participate in the [forum](https://forum.adonisjs.com/) and the AdonisJs [discord server](https://discord.me/adonisjs). You are free to ask your questions and share your work or contributions made to AdonisJs eco-system.
47-
48-
We follow a strict [Code of Conduct](https://adonisjs.com/community-guidelines) to make sure everyone is respectful to each other.
46+
We welcome you to participate in [GitHub Discussion](https://github.com/adonisjs/core/discussions) and the AdonisJS [Discord Server](https://discord.gg/vDcEjq6). You are free to ask your questions and share your work or contributions made to AdonisJS eco-system.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ about: Report identified bugs
1010
We do our best to reply to all the issues on time. If you will follow the given guidelines, the turn around time will be faster.
1111

1212
- Lots of raised issues are directly not bugs but instead are design decisions taken by us.
13-
- Make use of our [forum](https://forum.adonisjs.com/), or [discord server](https://discord.me/adonisjs), if you are not sure that you are reporting a bug.
13+
- Make use of our [GH discussions](https://github.com/adonisjs/core/discussions), or [discord server](https://discord.me/adonisjs), if you are not sure that you are reporting a bug.
1414
- Ensure the issue isn't already reported.
1515
- Ensure you are reporting the bug in the correct repo.
1616

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Put an `x` in the boxes that apply_
1818

1919
_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._
2020

21-
- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/assembler/blob/master/CONTRIBUTING.md) doc
21+
- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/assembler/blob/master/.github/CONTRIBUTING.md) doc
2222
- [ ] Lint and unit tests pass locally with my changes
2323
- [ ] I have added tests that prove my fix is effective or that my feature works.
2424
- [ ] I have added necessary documentation (if appropriate)

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
node-version:
1111
- 14.15.4
12-
- 16.x
12+
- 17.x
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{ matrix.node-version }}
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
node-version:
2828
- 14.15.4
29-
- 16.x
29+
- 17.x
3030
steps:
3131
- uses: actions/checkout@v2
3232
- name: Use Node.js ${{ matrix.node-version }}

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22

3-
Copyright 2021 Harminder Virk, contributors
3+
Copyright 2022 Harminder Virk, contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

0 commit comments

Comments
 (0)