Skip to content

Commit 7eb5cd5

Browse files
committed
chore: 3.0.0-beta.3 release merge
2 parents 6dcf544 + 72f6c4e commit 7eb5cd5

27 files changed

+310
-25864
lines changed

CONTRIBUTING.md

+23-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
1-
# Contributing to CoreUI Free Bootstrap Admin Template
1+
# Contributing to CoreUI Vue Admin Template
22

3-
Looking to contribute something to CoreUI Free Bootstrap Admin Template? **Here's how you can help.**
3+
Looking to contribute something? **Here's how you can help.**
44

55
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
66

77
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
88

99
## Using the issue tracker
1010

11-
The [issue tracker](https://github.com/coreui/coreui-free-vue-bootstrap-admin-template/issues) is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
11+
The [issue tracker](https://github.com/coreui/coreui-free-vue-admin-template/issues) is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
1212

13-
* Please **do not** use the issue tracker for personal support requests.
13+
- Please **do not** use the issue tracker for personal support requests.
1414

15-
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
15+
- Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
1616
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
1717
instead.
1818

19-
* Please **do not** open issues or pull requests regarding the code in [`@coreui/coreui`](https://github.com/coreui/coreui) (open them in their respective repositories).
19+
- Please **do not** open issues or pull requests regarding the code in:
20+
21+
- [`@coreui/vue`](https://github.com/coreui/coreui-vue)
22+
- [`@coreui/coreui`](https://github.com/coreui/coreui)
23+
- [`@coreui/coreui-icons-vue`](https://github.com/coreui/coreui-icons-vue)
24+
- [`@coreui/coreui-vue-chartjs`](https://github.com/coreui/coreui-vue-chartjs)
25+
26+
Open them in their respective repositories.
2027

2128
## Bug reports
2229

@@ -33,7 +40,6 @@ Guidelines for bug reports:
3340

3441
3. **Isolate the problem** — ideally create a [reduced test case](https://css-tricks.com/reduced-test-cases/) and a live example. [This JS Bin](http://jsbin.com/lefey/1/edit?html,output) is a helpful template.
3542

36-
3743
A good bug report shouldn't leave others needing to chase you up for more
3844
information. Please try to be as detailed as possible in your report. What is
3945
your environment? What steps will reproduce the issue? What browser(s) and OS
@@ -66,7 +72,6 @@ fits with the scope and aims of the project. It's up to *you* to make a strong
6672
case to convince the project's developers of the merits of this feature. Please
6773
provide as much detail and context as possible.
6874

69-
7075
## Pull requests
7176

7277
Good pull requests—patches, improvements, new features—are a fantastic
@@ -86,11 +91,11 @@ included in the project:
8691

8792
```bash
8893
# Clone your fork of the repo into the current directory
89-
git clone https://github.com/<your-username>/free-bootstrap-admin-template.git
94+
git clone https://github.com/<your-username>/coreui-free-vue-admin-template.git
9095
# Navigate to the newly cloned directory
91-
cd free-bootstrap-admin-template
96+
cd coreui-free-vue-admin-template
9297
# Assign the original repo to a remote called "upstream"
93-
git remote add upstream https://github.com/coreui/coreui-free-bootstrap-admin-template.git
98+
git remote add upstream https://github.com/coreui/coreui-free-vue-admin-template.git
9499
```
95100

96101
2. If you cloned a while ago, get the latest changes from upstream:
@@ -133,14 +138,13 @@ included in the project:
133138

134139
Inspired by Sparkbox's awesome article on [semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages). Please use following commit message format.
135140

136-
* chore (updating npm tasks etc; no production code change) -> ```git test -m 'chore: commit-message-here'```
137-
* docs (changes to documentation) -> ```git commit -m 'docs: commit-message-here'```
138-
* feat (new feature) -> ```git commit -m 'feat: commit-message-here'```
139-
* fix (bug fix) -> ```git commit -m 'fix: commit-message-here'```
140-
* refactor (refactoring production code) -> ```git commit -m 'refactor: commit-message-here'```
141-
* style (formatting, missing semi colons, etc; no code change) -> ```git commit -m 'style: commit-message-here'```
142-
* test (adding missing tests, refactoring tests; no production code change) -> ```git test -m 'refactor: commit-message-here'```
143-
141+
- chore (updating npm tasks etc; no production code change) -> ```git test -m 'chore: commit-message-here'```
142+
- docs (changes to documentation) -> ```git commit -m 'docs: commit-message-here'```
143+
- feat (new feature) -> ```git commit -m 'feat: commit-message-here'```
144+
- fix (bug fix) -> ```git commit -m 'fix: commit-message-here'```
145+
- refactor (refactoring production code) -> ```git commit -m 'refactor: commit-message-here'```
146+
- style (formatting, missing semi colons, etc; no code change) -> ```git commit -m 'style: commit-message-here'```
147+
- test (adding missing tests, refactoring tests; no production code change) -> ```git test -m 'refactor: commit-message-here'```
144148

145149
## Code guidelines
146150

ISSUE_TEMPLATE.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
Before opening an issue:
1+
# Before opening an issue
22

3-
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-vue-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
4-
- Prepare a [reduced test case](https://css-tricks.com/reduced-test-cases/) for any bugs
5-
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-vue-admin-template/blob/master/CONTRIBUTING.md)
3+
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-vue-admin-template/issues?q=is%3Aissue+is%3Aclosed)
4+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-vue-admin-templare/blob/v3-next/CONTRIBUTING.md)
65

76
When asking general "how to" questions:
87

@@ -16,5 +15,5 @@ When reporting a bug, include:
1615

1716
When suggesting a feature, include:
1817

19-
- As much detail as possible for what we should add and why it's important to CoreUI Admin Template
18+
- As much detail as possible for what we should add and why it's important to CoreUI Vue library
2019
- Relevant links to prior art, screenshots, or live demos whenever possible

0 commit comments

Comments
 (0)