Skip to content

Commit

Permalink
fix: update references to github
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnoW committed Aug 7, 2022
1 parent adbd59d commit 4098a93
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ about: A feature is not working as expected.
Thanks for contributing to Moralis!
-->

- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/SECURITY.md).
- [ ] I have searched through [existing issues](https://github.com/MoralisWeb3/Moralis-JS-SDK/issues?q=is%3Aissue) and the [Moralis Forum](https://forum.moralis.io/).
- [ ] I can reproduce the issue with the [latest SDK release](https://github.com/MoralisWeb3/Moralis-JS-SDK/releases), and my server is updated to the latest version.<!-- We don't investigate issues for outdated releases. -->
- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/SECURITY.md).
- [ ] I have searched through [existing issues](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/issues?q=is%3Aissue) and the [Moralis Forum](https://forum.moralis.io/).
- [ ] I can reproduce the issue with the [latest SDK release](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/releases), and my server is updated to the latest version.<!-- We don't investigate issues for outdated releases. -->

### Issue Description

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ about: Suggest new functionality or an enhancement of existing functionality.
Thanks for contributing to Moralis!
-->

- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/SECURITY.md).
- [ ] I have searched through [existing issues](https://github.com/MoralisWeb3/Moralis-JS-SDK/issues?q=is%3Aissue) and the [Moralis Forum](https://forum.moralis.io/).
- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/SECURITY.md).
- [ ] I have searched through [existing issues](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/issues?q=is%3Aissue) and the [Moralis Forum](https://forum.moralis.io/).

### Current Limitation

Expand Down
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ about: A new pull request
Thanks for contributing to Moralis!
-->

- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/SECURITY.md).
- [ ] My code is conform the [code style](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/CODE_STYLE.md)
- [ ] I am not disclosing a [vulnerability](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/SECURITY.md).
- [ ] My code is conform the [code style](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/CODE_STYLE.md)
- [ ] I have made corresponding changes to the documentation
- [ ] I have updated Typescript definitions when needed

Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

### Setting up you local machine:

- [Fork](https://github.com/MoralisWeb3/Moralis-JS-SDK) this project and clone the fork on your local machine:
- [Fork](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1) this project and clone the fork on your local machine:

```sh
git clone https://github.com/MoralisWeb3/Moralis-JS-SDK.git
cd Moralis-JS-SDK # go into the clone directory
git clone https://github.com/MoralisWeb3/Moralis-JS-SDK-v1.git
cd Moralis-JS-SDK-v1 # go into the clone directory
npm install # install all the node dependencies
```

Expand Down Expand Up @@ -43,11 +43,11 @@ We use GitHub issues to track public bugs. We will keep a close eye on this and

### Coding Style

Please follow the [Coding Style](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/CODING_STYLE.md).
Please follow the [Coding Style](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/CODING_STYLE.md).

### Code of Conduct

This project adheres to the [Contributor Covenant Code of Conduct](https://github.com/MoralisWeb3/Moralis-JS-SDK/blob/main/CODE_OF_CONDUCT.md). By participating, you are expected to honor this code.
This project adheres to the [Contributor Covenant Code of Conduct](https://github.com/MoralisWeb3/Moralis-JS-SDK-v1/blob/main/CODE_OF_CONDUCT.md). By participating, you are expected to honor this code.

## License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h2 align="center">Moralis SDK for JavaScript</h2>

<p align="center">
This is the v1 version of the Moralis JS SDK. For the latest version, see https://github.com/MoralisWeb3/Moralis-JS-SDK
This is the v1 version of the Moralis JS SDK. For the latest version, see https://github.com/MoralisWeb3/Moralis-JS-SDK-v1
</p>

<p align="center">
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const getDevHeader = () => {
'\n' +
' *\n' +
' * The source tree of this library can be found at\n' +
' * https://github.com/MoralisWeb3/Moralis-JS-SDK\n' +
' * https://github.com/MoralisWeb3/Moralis-JS-SDK-v1\n' +
' */\n'
);
};
Expand All @@ -149,7 +149,7 @@ const getFullHeader = () => {
' * All rights reserved.\n' +
' *\n' +
' * The source tree of this library can be found at\n' +
' * https://github.com/MoralisWeb3/Moralis-JS-SDK\n' +
' * https://github.com/MoralisWeb3/Moralis-JS-SDK-v1\n' +
' * This source code is licensed under the BSD-style license found in the\n' +
' * LICENSE file in the root directory of this source tree. An additional grant\n' +
' * of patent rights can be found in the PATENTS file in the same directory.\n' +
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/MoralisWeb3/Moralis-JS-SDK.git"
"url": "git+https://github.com/MoralisWeb3/Moralis-JS-SDK-v1.git"
},
"bugs": "https://github.com/MoralisWeb3/issue-tracker/issues",
"typings": "types",
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-template-curly-in-string */
module.exports = {
repositoryUrl: 'https://github.com/MoralisWeb3/Moralis-JS-SDK',
repositoryUrl: 'https://github.com/MoralisWeb3/Moralis-JS-SDK-v1',
branches: [
'fix-versioning-during-deployment',
'main',
Expand Down

0 comments on commit 4098a93

Please sign in to comment.