feat: initial packages list
This commit is contained in:
parent
41a18f5d4a
commit
371e9a371c
3 changed files with 1242 additions and 350 deletions
1542
package-lock.json
generated
1542
package-lock.json
generated
File diff suppressed because it is too large
Load diff
46
site/src/components/mcfly-packages.html
Normal file
46
site/src/components/mcfly-packages.html
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<table class="mcfly-packages-table">
|
||||||
|
<tr>
|
||||||
|
<th>Package</th>
|
||||||
|
<th>NPM</th>
|
||||||
|
<th>Description</th>
|
||||||
|
<th>GitHub</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>@mcflyjs/core</td>
|
||||||
|
<td>Core package containing event and configuration handlers</td>
|
||||||
|
<td><a href="https://ayco.io/n/@mcflyjs/core">link</a></td>
|
||||||
|
<td><a href="">link</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>@mcflyjs/config</td>
|
||||||
|
<td>Package containing the Nitro configuration for McFly apps</td>
|
||||||
|
<td><a href="https://ayco.io/n/@mcflyjs/config">link</a></td>
|
||||||
|
<td><a href="">link</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>@mcflyjs/cli</td>
|
||||||
|
<td>The McFly CLI tooling</td>
|
||||||
|
<td><a href="https://ayco.io/n/@mcflyjs/cli">link</a></td>
|
||||||
|
<td><a href="">link</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>create-mcfly</td>
|
||||||
|
<td>Create script for scaffolding McFly projects</td>
|
||||||
|
<td><a href="https://ayco.io/n/create-mcfly">link</a></td>
|
||||||
|
<td><a href="">link</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.mcfly-packages-table,
|
||||||
|
.mcfly-packages-table th,
|
||||||
|
.mcfly-packages-table td {
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
}
|
||||||
|
.mcfly-packages-table th,
|
||||||
|
.mcfly-packages-table td {
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -49,6 +49,10 @@
|
||||||
<a href="https://github.com/ayoayco/mcfly#readme">GitHub</a>.
|
<a href="https://github.com/ayoayco/mcfly#readme">GitHub</a>.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
<!-- <section>
|
||||||
|
<h2>McFly Published Packages</h2>
|
||||||
|
<mcfly-packages></mcfly-packages>
|
||||||
|
</section> -->
|
||||||
</main>
|
</main>
|
||||||
<my-footer></my-footer>
|
<my-footer></my-footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue