Skip to content

Commit 015ec60

Browse files
icfantvpkozlowski-opensource
authored andcommitted
chore(site): update github links for name change
Closes ng-bootstrap#407
1 parent 95c625d commit 015ec60

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Please remember, the issues forum is __NOT__ for support requests. It is for bugs and feature requests only.
2-
Please read https://github.com/ng-bootstrap/core/blob/master/CONTRIBUTING.md and search
2+
Please read https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CONTRIBUTING.md and search
33
existing issues (both open and closed) prior to opening any new issue and ensure you follow the instructions therein.
44

55
### Bug description:

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Before submitting a pull request, please make sure you have at least performed the following:
22

3-
- [] read and followed the [CONTRIBUTING.md](https://github.com/ng-bootstrap/core/blob/master/CONTRIBUTING.md) guide.
3+
- [] read and followed the [CONTRIBUTING.md](https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CONTRIBUTING.md) guide.
44
- [] built and tested the changes locally.
55
- [] added/updated any applicable tests.
66
- [] added/updated any applicable API documentation.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ We are always looking for the quality contributions and will be happy to accept
99
* your component has accompanying tests and all the tests are passing
1010
* your PR doesn't break the build; check the Travis-CI build status after opening a PR and push corrective commits if anything goes wrong
1111
* your commits conform to the conventions established [here](https://github.com/stevemao/conventional-changelog-angular/blob/master/convention.md)
12-
* your component follows all the conventions stated [here](https://github.com/ng-bootstrap/core/wiki/Code-conventions)
12+
* your component follows all the conventions stated [here](https://github.com/ng-bootstrap/ng-bootstrap/wiki/Code-conventions)

DEVELOPER.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It also explains the basic mechanics of using `git`, `node`, and `npm`.
1010
* [Running Tests Locally](#running-tests-locally)
1111
* [Formatting](#clang-format)
1212

13-
See the [contribution guidelines](https://github.com/ng-bootstrap/core/blob/master/CONTRIBUTING.md)
13+
See the [contribution guidelines](https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CONTRIBUTING.md)
1414
if you'd like to contribute to ng-bootstrap.
1515

1616
## Prerequisite Software
@@ -35,19 +35,19 @@ Fork and clone the ng-bootstrap repository:
3535
1. Login to your GitHub account or create one by following the instructions given
3636
[here](https://github.com/signup/free).
3737
2. [Fork](http://help.github.com/forking) the [main ng-bootstrap
38-
repository](https://github.com/ng-bootstrap/core).
39-
3. Clone your fork of the ng-bootstrap's core repository and define an `upstream` remote pointing back to
40-
the ng-bootstrap's core repository that you forked in the first place.
38+
repository](https://github.com/ng-bootstrap/ng-bootstrap).
39+
3. Clone your fork of the ng-bootstrap's ng-bootstrap repository and define an `upstream` remote pointing back to
40+
the ng-bootstrap's ng-bootstrap repository that you forked in the first place.
4141

4242
```shell
4343
# Clone your GitHub repository:
44-
git clone [email protected]:<github username>/core.git ng-bootstrap
44+
git clone [email protected]:<github username>/ng-bootstrap.git ng-bootstrap
4545

46-
# Go to the core directory:
46+
# Go to the ng-bootstrap directory:
4747
cd ng-bootstrap
4848

4949
# Add the main ng-bootstrap repository as an upstream remote to your repository:
50-
git remote add upstream https://github.com/ng-bootstrap/core.git
50+
git remote add upstream https://github.com/ng-bootstrap/ng-bootstrap.git
5151
```
5252

5353
## Installing NPM Modules and typings
@@ -129,7 +129,7 @@ to some whitespace difference.
129129
* `clang-format` also includes a git hook, run `git clang-format` to format all files you
130130
touched.
131131
* You can run this as a **git pre-commit hook** to automatically format your delta regions when you
132-
commit a change. In the core repo, run
132+
commit a change. In the ng-bootstrap repo, run
133133

134134
```
135135
$ echo -e '#!/bin/sh\nexec git clang-format' > .git/hooks/pre-commit
@@ -149,4 +149,4 @@ to some whitespace difference.
149149
- Parameters: `-i -style=file $FilePath$`
150150
- Working directory: `$ProjectFileDir$`
151151
* `clang-format` integrations are also available for many popular editors (`vim`, `emacs`,
152-
`Sublime Text`, etc.).
152+
`Sublime Text`, etc.).

demo/src/app/components/shared/api-docs/api-docs.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="api-doc-component">
22
<h2>
3-
<a href="https://github.com/ng-bootstrap/core/tree/master/{{apiDocs.fileName}}" target="_blank">{{apiDocs.className}}</a>
3+
<a href="https://github.com/ng-bootstrap/ng-bootstrap/tree/master/{{apiDocs.fileName}}" target="_blank">{{apiDocs.className}}</a>
44
</h2>
55
<p>{{apiDocs.description}}</p>
66
<table class="table table-sm table-hover">

demo/src/app/default/default.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ <h1 class="display-3">ng-bootstrap</h1>
1515
</p>
1616
<p class="lead">
1717
As with Bootstrap 4 and Angular 2, this library is a work in progress.
18-
Please check out our <a href="https://github.com/ng-bootstrap/core/wiki/Roadmap" target="_blank">roadmap</a> and
19-
<a href="https://github.com/ng-bootstrap/core/issues" target="_blank">list of issues</a> to see all the things we are implementing.
18+
Please check out our <a href="https://github.com/ng-bootstrap/ng-bootstrap/wiki/Roadmap" target="_blank">roadmap</a> and
19+
<a href="https://github.com/ng-bootstrap/ng-bootstrap/issues" target="_blank">list of issues</a> to see all the things we are implementing.
2020
Feel free to make comments there.
2121
</p>
2222

demo/src/app/getting-started/getting-started.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ <h3>
103103
</h3>
104104
<p>
105105
We are always looking for the quality contributions! Please check the
106-
<a href="https://github.com/ng-bootstrap/core/blob/master/CONTRIBUTING.md" target="_blank">Contributing</a> doc
106+
<a href="https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CONTRIBUTING.md" target="_blank">Contributing</a> doc
107107
for contribution guidelines. Additionally, for local building and testing information, please see our
108-
<a href="https://github.com/ng-bootstrap/core/blob/master/DEVELOPER.md" target="_blank">Developer's Guide</a>.
108+
<a href="https://github.com/ng-bootstrap/ng-bootstrap/blob/master/DEVELOPER.md" target="_blank">Developer's Guide</a>.
109109
</p>
110110
<h3>
111111
Code of Conduct
112112
</h3>
113113
<p>
114114
Please take a moment to read our
115-
<a href="https://github.com/ng-bootstrap/core/blob/master/CODE_OF_CONDUCT.md" target="_blank">Code of Conduct</a>.
115+
<a href="https://github.com/ng-bootstrap/ng-bootstrap/blob/master/CODE_OF_CONDUCT.md" target="_blank">Code of Conduct</a>.
116116
</p>
117117
</ngbd-content-wrapper>

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ gulp.task('check-format', function() {
159159
gulp.task('enforce-format', function() {
160160
return doCheckFormat().on('warning', function(e) {
161161
console.log("ERROR: You forgot to run clang-format on your change.");
162-
console.log("See https://github.com/ng-bootstrap/core/blob/master/DEVELOPER.md#clang-format");
162+
console.log("See https://github.com/ng-bootstrap/ng-bootstrap/blob/master/DEVELOPER.md#clang-format");
163163
process.exit(1);
164164
});
165165
});

0 commit comments

Comments
 (0)