-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontribute.html
More file actions
167 lines (151 loc) · 9.08 KB
/
contribute.html
File metadata and controls
167 lines (151 loc) · 9.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contribute | Closure Next</title>
<meta name="description" content="Closure Library rewritten in TypeScript">
<meta property="og:url" content="https://closure-next.github.io" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Closure Next" />
<meta property="og:title" content="Closure Next | Closure Library rewritten in TypeScript" />
<meta property="og:description" content="Closure Library rewritten in TypeScript" />
<meta property="og:image" content="assets/image/Closure Next.png" /> <meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1200" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:domain" content="closure-next.github.io" />
<meta name="twitter:url" content="https://closure-next.github.io" />
<meta name="twitter:title" content="Closure Next | Closure Library rewritten in TypeScript" />
<meta name="twitter:description" content="Closure Library rewritten in TypeScript" />
<meta name="twitter:image" content="assets/image/Closure Next.png" /> <meta name="twitter:image:width" content="1200" />
<meta name="twitter:image:height" content="1200" />
<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="assets/img/android-chrome-512x512.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="manifest" href="assets/img/site.webmanifest">
<div class="h-card">
<a class="u-url" href="https://closure-next.github.io/">
<img class="u-photo" src="assets/image/Closure Next.png" alt="Closure Next Logo" width="80" height="80">
</a>
</div>
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="https://closure-next.readthedocs.io/en/latest/">Documentation</a></li>
<li><a href="/history">History</a></li>
<li><a href="/contribute">Contribute</a></li>
<li><a href="/showcase">Showcase</a></li>
<li><a href="/faq">FAQ (Frequently Asked Questions)</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="content">
<div class="column">
<h2>Contributing to Closure Next</h2>
<p>Closure Next is an open-source project, and we welcome contributions from the community! Whether you want to report a bug, suggest improvements, or contribute code, here’s how you can help.</p>
<h3>1. Reporting Bugs:</h3>
<p>If you find a bug, you can report it through:</p>
<p>- <a href="https://github.com/MilesONerd/closure-next/issues">GitHub Issues</a> – For tracking bugs and problems.</p>
<p>- <a href="https://github.com/MilesONerd/closure-next/discussions">GitHub Discussions</a> – For general questions and discussions.</p>
<p>🔴 Security Issues: If you discover a security vulnerability, do not report it via GitHub Issues or Discussions. Instead, please:</p>
<p>- Email us at <a href="mailto:security@milesonerd.8shield.net">security@milesonerd.8shield.net</a></p>
<p>- Or, if you’re comfortable fixing it yourself, submit a pull request after resolving the issue.</p>
<h3>2. Suggesting Improvements:</h3>
<p>If you have an idea to improve Closure Next, share it on:</p>
<p>- <a href="https://github.com/MilesONerd/closure-next/discussions/categories/ideas-feature-requests">GitHub Discussions</a> under the "Ideas & Feature Requests" category.</p>
<p>Your suggestions help shape the future of the project!</p>
<h3>3. Contributing Code:</h3>
<p>Want to contribute code? Follow these steps:</p>
<p>Step 1: Fork the Repository</p>
<p>Click the "Fork" button on the Closure Next GitHub repository:</p>
<p>🔗 <a href="https://github.com/MilesONerd/closure-next">GitHub Repository</a></p>
<p>Step 2: Clone Your Fork</p>
<p>Run the following command to clone the repository to your local machine:</p>
<p>git clone https://github.com/MilesONerd/closure-next.git</p>
<p>Step 3: Create a New Branch</p>
<p>Switch to a new branch for your feature or fix:</p>
<p>git checkout -b my-feature</p>
<p>Step 4: Make Your Changes & Test Locally</p>
<p>Modify the code, add your feature or fix the bug, and test it locally before submitting.</p>
<p>Step 5: Commit and Push Your Changes</p>
<p>Commit your changes and push them to your fork:</p>
<p>git add .</p>
<p>git commit -m "Describe your changes"</p>
<p>git push origin my-feature</p>
<p>Step 6: Submit a Pull Request (PR)</p>
<p>Go to the <a href="https://github.com/MilesONerd/closure-next">Closure Next GitHub Repository</a> and submit a pull request from your fork. The team will review your changes and provide feedback if needed.</p>
<h3>4. Community and Support:</h3>
<p>Need help or want to discuss Closure Next? Join our community:</p>
<p>📢 <a href="https://github.com/MilesONerd/closure-next">GitHub Discussions</a> – Ask questions, share ideas, and connect with other contributors.</p>
<p>📢 <a href="https://t.me/closure_next">Telegram Channel</a> – Stay updated with the latest changes and announcements.</p>
<p>📢 <a href="https://www.producthunt.com/posts/closure-nex">Product Hunt</a> - Vote and give feedback.</p>
</div>
</section>
<section class="content">
<div class="column">
<h4>Social:</h4>
<ul>
<h5>
<li><a href="https://bsky.app/profile/closure-next.bsky.social">Bluesky</a></li>
<li><a href="https://github.com/closure-next">GitHub</a></li>
<li><a href="https://fosstodon.org/@closure_next">Fosstodon</a></li>
<li><a href="https://t.me/closure_next">Telegram</a></li>
<li><a href="https://x.com/closure_next">X</a></li>
</h5>
</ul>
</div>
<div class="column">
<h4>Repository:</h4>
<ul>
<h5>
<li><a href="https://github.com/MilesONerd/closure-next">MilesONerd/closure-next</a></li>
</h5>
</ul>
</div>
<div class="column">
<h4>Policies and Terms:</h4>
<ul>
<h5>
<li><a href="/policies/privacy">Privacy</li>
<li><a href="/policies/accessibility">Accessibility</li>
<li><a href="/policies/cookies">Cookies</li>
<li><a href="/policies/terms">Terms of Use</li>
<li><a href="/policies/service">Terms of Service</li>
<li><a href="/policies">Other policies</li>
</h5>
</ul>
</div>
</section>
</main>
<footer class="footer">
<h5 align="left">
<div>
<a href="https://github.com/closure-next/closure-next.github.io">Website repository</a> |
<a href="https://github.com/closure-next/closure-next.github.io/blob/main/LICENSE">Site Repository License</a> |
<a href="https://github.com/MilesONerd/closure-next/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> |
<a href="https://github.com/MilesONerd/closure-next/blob/master/SECURITY.md">Security Policy</a> |
<a href="https://github.com/MilesONerd/closure-next/blob/master/LICENSE">License</a>
</div>
</h5>
<h5 align="right">
<p>Hosted by <a href="https://pages.github.com" rel="nofollow">GitHub Pages</a></p>
</h5>
<h5 align="center">
<p>This website is not affiliated with any of the companies mentioned. All product names, logos and brands are the property of their respective owners.</p>
<p>Copyright © 2025-2025 The Closure Next Team. All Rights Reserved.</p>
</h5>
</footer>
<script src="https://closure-next.github.io/assets/scripts/functions.js"></script>
</body>
</html>