Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Contributing

Thanks for wanting to contribute to the docs site! We welcome improvements to docs, examples and tooling.

Please follow these steps to contribute:

1. Open an issue describing the change you plan to make.
2. Create a branch from `develop` named `pr/<issue-number>-short-description`.
3. Make small, focused commits with clear messages.
4. Run any linters or checks locally before opening a PR.
5. Open a Pull Request that references the issue and includes a summary of changes and screenshots if relevant.

Behavioural expectations
- Be respectful and patient in discussions.
- Keep changes small and well-documented.

Thank you — your contributions make this project better!
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug report
about: Create a report to help us improve
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '...'
3. See error

**Expected behavior**
What you expected to happen.

**Screenshots/Logs**
If applicable, add screenshots or logs to help explain your problem.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Feature request
about: Suggest an idea for this project
---

**Describe the feature**
A clear and concise description of the feature you'd like.

**Use case**
Why is this feature helpful?

**Alternatives considered**
Optional: other approaches you considered.
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Summary

Describe the changes in this pull request.

## Related issue

Closes: #

## Checklist

- [ ] I have read `CONTRIBUTING.md`
- [ ] Tests added/updated (if applicable)
- [ ] Documentation updated (if applicable)
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint
description: Lint and build the project to check for errors.
on:
- pull_request
- push

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run build
run: npm run build
173 changes: 136 additions & 37 deletions docs/.vitepress/data/minecraft.json

Large diffs are not rendered by default.

91 changes: 18 additions & 73 deletions docs/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,80 +27,25 @@ This page is for testing custom components.

<Inventory
title="Items"
:rows="8"
:rows="2"
:items="[
'copper_chest',
'exposed_copper_chest',
'weathered_copper_chest',
'oxidized_copper_chest',
'waxed_copper_chest',
'waxed_exposed_copper_chest',
'waxed_weathered_copper_chest',
'waxed_oxidized_copper_chest',
'oak_shelf',
'spruce_shelf',
'birch_shelf',
'jungle_shelf',
'acacia_shelf',
'dark_oak_shelf',
'mangrove_shelf',
'cherry_shelf',
'pale_oak_shelf',
'bamboo_shelf',
'crimson_shelf',
'warped_shelf',
'copper_golem_statue',
'exposed_copper_golem_statue',
'weathered_copper_golem_statue',
'oxidized_copper_golem_statue',
'waxed_copper_golem_statue',
'waxed_exposed_copper_golem_statue',
'waxed_weathered_copper_golem_statue',
'waxed_oxidized_copper_golem_statue',
'exposed_lightning_rod',
'weathered_lightning_rod',
'oxidized_lightning_rod',
'waxed_lightning_rod',
'waxed_exposed_lightning_rod',
'waxed_weathered_lightning_rod',
'waxed_oxidized_lightning_rod',
'copper_golem_spawn_egg',
'copper_sword',
'copper_axe',
'copper_pickaxe',
'copper_shovel',
'copper_hoe',
'copper_helmet',
'copper_chestplate',
'copper_leggings',
'copper_boots',
'copper_horse_armor',
'copper_nugget',
'copper_torch',
'copper_lantern',
'exposed_copper_lantern',
'weathered_copper_lantern',
'oxidized_copper_lantern',
'waxed_copper_lantern',
'waxed_exposed_copper_lantern',
'waxed_weathered_copper_lantern',
'waxed_oxidized_copper_lantern',
'copper_bars',
'exposed_copper_bars',
'weathered_copper_bars',
'oxidized_copper_bars',
'waxed_copper_bars',
'waxed_exposed_copper_bars',
'waxed_weathered_copper_bars',
'waxed_oxidized_copper_bars',
'copper_chain',
'exposed_copper_chain',
'weathered_copper_chain',
'oxidized_copper_chain',
'waxed_copper_chain',
'waxed_exposed_copper_chain',
'waxed_weathered_copper_chain',
'waxed_oxidized_copper_chain',
'copper_nautilus_armor',
'iron_nautilus_armor',
'golden_nautilus_armor',
'diamond_nautilus_armor',
'netherite_nautilus_armor',
'netherite_horse_armor',
'wooden_spear',
'stone_spear',
'copper_spear',
'iron_spear',
'golden_spear',
'diamond_spear',
'netherite_spear',
'camel_husk_spawn_egg',
'nautilus_spawn_egg',
'parched_spawn_egg',
'zombie_nautilus_spawn_egg',
]"/>

### ShapedRecipe
Expand Down
Loading