Skip to content

Commit fd2bc68

Browse files
authored
Merge pull request #1 from brionmario/main
🎉 MVP
2 parents 3b19266 + fb98247 commit fd2bc68

File tree

84 files changed

+10995
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+10995
-96
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"access": "restricted",
4+
"baseBranch": "main",
5+
"changelog": [
6+
"@changesets/changelog-github",
7+
{
8+
"repo": "asgardeo/mcp-node"
9+
}
10+
],
11+
"commit": false,
12+
"fixed": [],
13+
"ignore": [],
14+
"linked": [],
15+
"privatePackages": {
16+
"version": true,
17+
"tag": true
18+
},
19+
"root": {
20+
"packageDir": "."
21+
},
22+
"tagFormat": "@<scope>/<package>@${version}",
23+
"updateInternalDependencies": "patch"
24+
}

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Global ignore file incase if a child package doesn't include one.
2+
3+
/dist
4+
/build
5+
/node_modules
6+
/coverage

.eslintrc.cjs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3+
*
4+
* WSO2 LLC. licenses this file to you under the Apache License,
5+
* Version 2.0 (the "License"); you may not use this file except
6+
* in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing,
12+
* software distributed under the License is distributed on an
13+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
* KIND, either express or implied. See the License for the
15+
* specific language governing permissions and limitations
16+
* under the License.
17+
*/
18+
19+
module.exports = {
20+
env: {
21+
es6: true,
22+
node: true,
23+
},
24+
extends: ['plugin:@wso2/internal', 'plugin:@wso2/prettier'],
25+
plugins: ['@wso2'],
26+
};

.github/issue_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!-- Please do not remove any sections of the template. Add `N/A` if not applicable. -->
2+
3+
### Description
4+
<!-- Give a brief description of the issue -->
5+
6+
### Steps to reproduce:**
7+
<!-- Provide a minimal and reproducible example, including steps to reproduce the issue. If possible, please include a code snippet. -->
8+
9+
### Related Issues:**
10+
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
11+
12+
### Suggested Labels
13+
<!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
14+
15+
### Suggested Assignees
16+
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
17+
18+
### Affected Version
19+
<!-- Specify the version of the product where the issue is observed. If it is not applicable, please specify N/A. -->
20+
21+
### OS, DB, other environment details and versions
22+
<!-- Specify the OS, DB, other environment details and versions. If it is not applicable, please specify N/A. -->

.github/pull_request_template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!-- Please do not remove any sections of the template. Add `N/A` if not applicable. -->
2+
3+
### Purpose
4+
<!-- Describe the problem, feature, improvement or the change introduces by the PR briefly. Add screenshots/GIFs if UI/UX changes are introduced. -->
5+
6+
7+
### Related Issues
8+
<!-- Mention the issue/s related to the pull request. Make sure to only add publicly accessible references. -->
9+
- N/A
10+
11+
### Related PRs
12+
<!-- Mention the related pull requests. Make sure to only add publicly accessible references. -->
13+
- N/A
14+
15+
### Checklist
16+
17+
- [ ] Manual test round performed and verified.
18+
- [ ] Documentation provided.
19+
- [ ] Unit tests provided.
20+
21+
### Security checks
22+
- [ ] Followed secure coding standards in http://wso2.com/technical-reports/wso2-secure-engineering-guidelines
23+
- [ ] Ran ESLint and Prettier fixed any issues.
24+
- [ ] Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets

0 commit comments

Comments
 (0)