Skip to content

Commit a6bd540

Browse files
Update 0.0.2
1 parent 1ab0924 commit a6bd540

File tree

5 files changed

+103
-3
lines changed

5 files changed

+103
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,7 @@ coverage/
3838
dist/
3939
out/
4040
temp/
41+
Build/
42+
43+
#Build Extension Shell Script
44+
build-extension.sh

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ vsc-extension-quickstart.md
1212
**/*.map
1313
**/*.ts
1414
**/.vscode-test.*
15+
Build/

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "auto-closing-tags" extension will be documented in t
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7-
## [Unreleased]
7+
## v0.0.1 (2025-01-06)
88

9-
- Initial release
9+
Initial release.
10+
11+
## v0.0.2 (2025-01-11)
12+
13+
Fix some Bug

CONTRIBUTING.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Contributing to Auto Closing Tags for VS Code
2+
3+
Thank you for considering contributing to the **Auto Closing Tags** extension for Visual Studio Code! We appreciate your interest in improving the extension and making it more useful for developers.
4+
5+
## How Can I Contribute?
6+
7+
There are many ways you can contribute to this project:
8+
9+
1. **Bug Reports**: If you find a bug or issue with the extension, please open an issue on GitHub. Make sure to provide as much detail as possible, including steps to reproduce the issue.
10+
2. **Feature Requests**: If you'd like to see new features or additional snippets in the extension, open an issue with your suggestion, and we will review it.
11+
3. **Pull Requests**: You can submit your changes by forking the repository, creating a new branch, and submitting a pull request. We'll review your PR and merge it if it fits the project's goals.
12+
13+
## Prerequisites
14+
15+
To contribute to this project, you need the following:
16+
17+
- **Visual Studio Code**: The editor for which the extension is being developed.
18+
- **Node.js**: Make sure Node.js is installed on your machine. You can download it from [nodejs.org](https://nodejs.org/).
19+
- **Git**: You'll need Git to clone the repository and submit your changes.
20+
21+
22+
If you would like to add more snippets or improve the extension, feel free to fork the repository, make changes, and submit a pull request.
23+
24+
## Steps to Contribute:
25+
1. Fork the repository.
26+
2. Clone your fork:
27+
```bash
28+
git clone https://github.com/Codegyan-LLC/Auto-Closing-Tags.git
29+
```
30+
3. Create a new branch:
31+
Before making any changes, create a new branch for your work. Be descriptive about the changes you're going to make.
32+
33+
```bash
34+
git checkout -b feature-name
35+
```
36+
4. Make your changes :
37+
Now, you can start making changes to the code. You can:
38+
39+
- Add new Auto Closing Tags.
40+
- Modify existing Code.
41+
- Update documentation like the README.md or add new sections for future features.
42+
43+
5. Test the Extension
44+
After making your changes, test the extension locally by running it in VS Code:
45+
46+
Press F5 in VS Code to open a new window with your extension loaded.
47+
In the new window, open and test the extension you've added or modified.
48+
49+
6. Commit your changes:
50+
```bash
51+
git commit -m "Added New Closing Tags"
52+
```
53+
7. Push to your fork:
54+
```bash
55+
git push origin feature-name
56+
```
57+
58+
8. Open a Pull Request
59+
Go to your forked repository on GitHub and click Compare & Pull Request.
60+
61+
Provide a clear description of what you've changed and why. If you're fixing a bug, mention the issue number.
62+
63+
9. Code Review
64+
Once your pull request is submitted, the project maintainers will review your changes. If necessary, they will suggest modifications. After the review process, your changes will be merged into the main branch.
65+
66+
67+
## Code Style
68+
69+
1. Make sure your code is well-formatted and follows consistent style.
70+
2. Please add appropriate comments where needed, especially for complex code.
71+
3. Ensure your code doesn't break existing features by thoroughly testing it.
72+
73+
## Reporting Issues
74+
If you encounter any problems or bugs while using the extension, please report them on the GitHub Issues page. Include the following information:
75+
1. A detailed description of the issue.
76+
2. Steps to reproduce the issue.
77+
3. The environment (VS Code version, OS, etc.).
78+
4. Screenshots, if applicable.
79+
80+
Thank you for helping to make the Advanced Auto Closing Tags extension better! If you have any questions or need help, feel free to ask on the GitHub Discussions page.

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "auto-closing-tags",
33
"displayName": "Auto Closing Tags",
44
"description": "Automatically close tags for multiple languages",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "codegyan",
77
"author": "Prathmesh Yelne",
88
"engines": {
@@ -21,6 +21,17 @@
2121
"Codegyan",
2222
"Prathmesh Yelne"
2323
],
24+
"bugs": {
25+
"url": "https://github.com/Codegyan-LLC/Auto-Closing-Tags/issues"
26+
},
27+
"sponsor": {
28+
"url": "https://github.com/sponsors/prathmeshyelne"
29+
},
30+
"repository": {
31+
"type": "git",
32+
"url": "https://github.com/Codegyan-LLC/Auto-Closing-Tags.git"
33+
},
34+
"homepage": "https://github.com/Codegyan-LLC/Auto-Closing-Tags/blob/master/README.md",
2435
"activationEvents": [
2536
"onLanguage:html",
2637
"onLanguage:xml",

0 commit comments

Comments
 (0)