Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-swc
Browse files Browse the repository at this point in the history
Signed-off-by: Okinea Dev <[email protected]>
  • Loading branch information
Okinea Dev authored Oct 29, 2024
2 parents 98084e7 + 8fc5912 commit 77c5b20
Show file tree
Hide file tree
Showing 694 changed files with 5,904 additions and 4,333 deletions.
12 changes: 6 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
// Use Microsoft's Ubuntu Base image for the dev container
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
// Use NodeJS features in the dev container
"ghcr.io/devcontainers/features/node:1": {}
"ghcr.io/michidk/devcontainers-features/bun:1": {}
},

"privileged": true,

"onCreateCommand": {
// Install NPM dependencies in the dev container
"install-node-packages": "npm install"
// Install dependencies in the dev container
"install-bun-packages": "bun install"
},

"customizations": {
Expand All @@ -23,10 +22,11 @@
"resmon.show.cpufreq": false
},
"extensions": [
// Define suggested extensions to preinstall in the dev container
"biomejs.biome",
"jock.svg",
"EditorConfig.EditorConfig"
"EditorConfig.EditorConfig",
"oven.bun-vscode",
"DavidAnson.vscode-markdownlint"
]
}
}
Expand Down
3 changes: 2 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# These are supported funding model platforms
github: [pkief]
custom: ['https://paypal.me/philippkief', 'https://buymeacoffee.com/pkief']
buy_me_a_coffee: pkief
custom: ['https://paypal.me/philippkief']
57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/1-icon-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: ๐Ÿž๏ธ Icon Request
description: Ask for specific icons to be added
title: "[Icon Request]: <icon_name>"
labels: ["icon-request"]

body:
- type: checkboxes
id: icon-type
attributes:
label: Icon Type
description: What type of icon are you requesting?
options:
- label: Folder
- label: File

- type: textarea
id: folder-names
attributes:
label: Folder names
description: If you are requesting folder icons, please list the folder names here.
placeholder: |
- folder-name
- another-folder-name
- ...
- type: textarea
id: file-names
attributes:
label: File names
description: If you are requesting file icons, please list the file names or file extensions here.
placeholder: |
- file-name
- another-file-name
- ...
- type: textarea
id: graphic-ideas
attributes:
label: Graphic ideas
description: A clear description of the icon you would like. If the icons are separate for folder and files, please create separate issues.
placeholder: Include a link to sample icons if possible

- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context about the icons here.
placeholder: I consider these icons necessary because ...

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](../../CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's **Code of Conduct**
required: true
78 changes: 78 additions & 0 deletions .github/ISSUE_TEMPLATE/2-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: ๐Ÿ› Bug Report
description: Create a report to help us improve
title: "[Bug]: "
labels: ["bug"]

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Describe the bug
description: Describe the bug clearly
validations:
required: true

- type: textarea
id: reproduce
attributes:
label: To Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen
validations:
required: true

- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem
validations:
required: false

- type: textarea
id: computer-info
attributes:
label: Computer information
description: |
Examples:
- **OS edition**: [e.g. Windows 11 Home]
- **Extension version**: [e.g. 5.6.0]
- **VSCode version**: [e.g. 1.91.1]
value: |
- **OS edition**:
- **Extension version**:
- **VSCode version**:
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context about the problem here.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](../../CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's **Code of Conduct**
required: true
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/icon_request.md

This file was deleted.

7 changes: 0 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md

This file was deleted.

24 changes: 24 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Add 'icons' label to any file changes within 'icons' folder or 'src/core/icons' typescript files
icons:
- changed-files:
- any-glob-to-any-file: ['icons/*', 'src/core/icons/*.ts']

# Add 'translations' label to any changes within 'package.nls*.json' files or 'src/core/i18n' folder
translations:
- changed-files:
- any-glob-to-any-file: ['package.nls*.json', 'src/core/i18n']

# Add 'docs' label to any changes to markdown files
docs:
- changed-files:
- any-glob-to-any-file: '*.md'

# Add 'workflows' label to any changes within '.github/workflows' folder or '.github/labeler.yml' file
workflows:
- changed-files:
- any-glob-to-any-file: ['.github/workflows/*', '.github/labeler.yml']

# Add 'devcontainers' label to any changes within '.devcontainer' folder
devcontainers:
- changed-files:
- any-glob-to-any-file: '.devcontainer/*'
8 changes: 8 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Description

<!-- Please describe in a short sentence or bullet points what changes you have made. -->

## Contribution Guidelines

- [ ] By creating this pull request, I acknowledge that I have read the [Contribution Guidelines](https://github.com/material-extensions/vscode-material-icon-theme/blob/main/CONTRIBUTING.md) for this project.
- [ ] I have read the [Code Of Conduct](https://github.com/material-extensions/vscode-material-icon-theme/blob/main/CODE_OF_CONDUCT.md) and promise to abide by these rules
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
name: Build Material Icon Theme

steps:
- name: Checkout ๐Ÿ›Ž
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Checkout ๐Ÿ›Ž๏ธ
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false

- name: Setup Platform ๐Ÿ› 
uses: oven-sh/setup-bun@f4d14e03ff726c06358e5557344e1da148b56cf7 # v1.2.2
- name: Setup Platform ๐Ÿ› ๏ธ
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2
with:
bun-version: 1.1.13
bun-version: 1.1.18

- name: Install dependencies ๐Ÿ“ฆ
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/color-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout ๐Ÿ›Ž๏ธ
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
persist-credentials: false
Expand Down
Loading

0 comments on commit 77c5b20

Please sign in to comment.