Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
okineadev authored Nov 1, 2024
2 parents fb00ac3 + cb631a8 commit eb48fcf
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .bun-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.28
1.1.33
18 changes: 0 additions & 18 deletions .github/dependabot.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/icon-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ jobs:
pull-requests: write

steps:
- name: 🔧 Setup Bun
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2
with:
bun-version-file: ".bun-version"

- name: 📥 Checkout Fork
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
Expand All @@ -40,6 +35,11 @@ jobs:
path: main
persist-credentials: false

- name: 🔧 Setup Bun
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2
with:
bun-version-file: "main/.bun-version"

- name: 🔍 Review SVG files
working-directory: main
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
with:
script: |
const iconsCount = parseInt("${{ env.svg_files_count }}");
const imageURL = "${{ env.image_url }}");
const imageURL = "${{ env.image_url }}";
const image = `<img src="${imageURL}" alt="Generated preview" />`;
const pluralS = iconsCount > 1 ? "s" : "";
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: git push

- name: 🚀 Release ${{ env.VERSION }}
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2.0.9
with:
files: ${{ env.NAME }}-${{ env.VERSION }}.vsix
tag_name: v${{ env.VERSION }}
Expand Down
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions icons/dependencies-update.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/swc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,25 +362,25 @@
}
},
"dependencies": {
"chroma-js": "^2.4.2",
"chroma-js": "^3.0.0",
"fast-deep-equal": "^3.1.3",
"svgson": "^5.3.1",
"events": "^3.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.2",
"@softarc/sheriff-core": "^0.15.1",
"@biomejs/biome": "1.9.4",
"@softarc/sheriff-core": "^0.18.0",
"@types/chroma-js": "^2.4.4",
"@types/puppeteer": "^5.4.7",
"@types/vscode": "~1.55.0",
"@types/puppeteer": "^7.0.0",
"@types/vscode": "~1.95.0",
"axios": "^1.7.2",
"bun-types": "^1.1.20",
"changelog-machine": "^1.1.0",
"esbuild": "^0.21.5",
"puppeteer": "^22.13.1",
"esbuild": "^0.24.0",
"puppeteer": "^23.0.0",
"rimraf": "^6.0.1",
"svg-color-linter": "^1.4.0",
"svgo": "^2.8.0",
"svg-color-linter": "^2.0.0",
"svgo": "^3.0.0",
"typescript": "^5.5.4"
}
}
19 changes: 19 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests"
],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions workflows",
"groupSlug": "github-actions"
},
{
"matchManagers": ["bun"],
"groupName": "Bun packages",
"groupSlug": "bun-packages"
}
]
}
4 changes: 4 additions & 0 deletions src/core/icons/fileIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2768,5 +2768,9 @@ export const fileIcons: FileIcons = {
IconPack.Vuex,
],
},
{
name: 'dependencies-update',
fileExtensions: ['.ncurc.json', '.ncurc.yml', '.ncurc.js'],
},
]),
};

0 comments on commit eb48fcf

Please sign in to comment.