Skip to content

Commit

Permalink
Merge pull request #4 from Polyfrost/website/icon-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest authored Jan 20, 2024
2 parents 55b593c + 55548a9 commit 0afab2c
Show file tree
Hide file tree
Showing 209 changed files with 10,130 additions and 4,711 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ trim_trailing_whitespace = true

# JavaScript, JSON, JSX, JavaScript Modules, TypeScript
# https://github.com/feross/standard
# https://prettier.io
[*.{cjs,js,json,jsx,mjs,ts,tsx}]
indent_size = 4
tab_width = 4
Expand Down
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

100 changes: 50 additions & 50 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
name: 🐞 Bug Report
description: Report a bug
labels:
- kind/bug
- status/needs-triage
- kind/bug
- status/needs-triage

body:
- type: checkboxes
id: product
attributes:
label: Product name
description: What Polyfrost product are you using?
options:
- label: Website
- label: Launcher
- label: Installer
- type: checkboxes
id: product
attributes:
label: Product name
description: What Polyfrost product are you using?
options:
- label: Website
- label: Launcher
- label: Installer

- type: markdown
attributes:
value: |
## First of all
1. Please search for [existing issues](https://github.com/polyfrost/nexus/issues?q=is%3Aissue) about this problem first.
2. Make sure it's an issue with our products and not something else you are using.
3. Remember to follow our community guidelines and be friendly.
- type: markdown
attributes:
value: |
## First of all
1. Please search for [existing issues](https://github.com/polyfrost/nexus/issues?q=is%3Aissue) about this problem first.
2. Make sure it's an issue with our products and not something else you are using.
3. Remember to follow our community guidelines and be friendly.
- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear description of what the bug is. Include screenshots if applicable.
placeholder: Bug description
validations:
required: true
- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear description of what the bug is. Include screenshots if applicable.
placeholder: Bug description
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: Reproduction
description: Steps to reproduce the behavior.
placeholder: |
1. Go to ...
2. Click on ...
3. See error
- type: textarea
id: reproduction
attributes:
label: Reproduction
description: Steps to reproduce the behavior.
placeholder: |
1. Go to ...
2. Click on ...
3. See error
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear description of what you expected to happen.
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear description of what you expected to happen.

- type: textarea
id: logs
attributes:
label: Stack trace (optional)
render: Shell
- type: textarea
id: logs
attributes:
label: Stack trace (optional)
render: Shell

- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context about the problem here.
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context about the problem here.
18 changes: 9 additions & 9 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json
blank_issues_enabled: false
contact_links:
- name: 🙏 Get Help
url: https://github.com/polyfrost/nexus/discussions/new?category=help
about: If you can't get something to work the way you expect, open a question in our discussion forums.
- name: 💡 Feature Request
url: https://github.com/polyfrost/nexus/discussions/new?category=ideas
about: Suggest any ideas you have using our discussion forums.
- name: 💬 Discord Chat
url: https://polyfrost.cc/discord
about: Ask questions and talk to other Polyfrost product users and the devs.
- name: 🙏 Get Help
url: https://github.com/polyfrost/nexus/discussions/new?category=help
about: If you can't get something to work the way you expect, open a question in our discussion forums.
- name: 💡 Feature Request
url: https://github.com/polyfrost/nexus/discussions/new?category=ideas
about: Suggest any ideas you have using our discussion forums.
- name: 💬 Discord Chat
url: https://polyfrost.org/discord
about: Ask questions and talk to other Polyfrost product users and the devs.
2 changes: 0 additions & 2 deletions .github/actions/publish-artifacts/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions .github/actions/publish-artifacts/action.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/actions/publish-artifacts/dist/index.js

This file was deleted.

101 changes: 0 additions & 101 deletions .github/actions/publish-artifacts/index.ts

This file was deleted.

18 changes: 0 additions & 18 deletions .github/actions/publish-artifacts/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions .github/actions/publish-artifacts/tsconfig.json

This file was deleted.

44 changes: 22 additions & 22 deletions .github/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Setup Node.js, pnpm and dependencies
description: Setup Node.js, pnpm and dependencies
inputs:
token:
description: Github token
required: false
default: ''
token:
description: Github token
required: false
default: ''
runs:
using: 'composite'
steps:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x.x
using: composite
steps:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js
uses: actions/setup-node@v3
with:
token: ${{ inputs.token }}
check-latest: true
node-version-file: '.nvmrc'
- name: Install Node.js
uses: actions/setup-node@v3
with:
token: ${{ inputs.token }}
check-latest: true
node-version-file: .nvmrc

- name: Install pnpm deps
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }}
env:
NODE_ENV: debug
GITHUB_TOKEN: ${{ inputs.token }}
run: pnpm i --frozen-lockfile
- name: Install pnpm deps
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }}
env:
NODE_ENV: debug
GITHUB_TOKEN: ${{ inputs.token }}
run: pnpm i --frozen-lockfile
Loading

0 comments on commit 0afab2c

Please sign in to comment.