Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge with upstream #100

Merged
merged 3 commits into from
Aug 5, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: bunx @vscode/vsce package

- name: Attest artifacts ✅
uses: actions/attest@7305951e905fb742188aa16c1d23409b13565e26 # v1.3.3
uses: actions/attest@2da0b136720d14f01f4dbeeafd1d5a4d76cbe21d # v1.4.0
# Read: https://docs.github.com/en/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds
with:
subject-path: '${{ env.NAME }}-${{ env.VERSION }}.vsix'
Expand Down
1 change: 1 addition & 0 deletions icons/drizzle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/folder-drizzle-open.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/folder-drizzle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/core/icons/fileIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2444,6 +2444,14 @@ export const fileIcons: FileIcons = {
name: 'abap',
fileExtensions: ['abap', 'acds', 'asddls'],
},
{
name: 'drizzle',
fileNames: [
'drizzle.config.ts',
'drizzle.config.js',
'drizzle.config.json',
],
},
{ name: 'lottie', fileExtensions: ['lottie'] },
{
name: 'puppeteer',
Expand Down
15 changes: 13 additions & 2 deletions src/core/icons/folderIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ export const folderIcons: FolderTheme[] = [
},
{
name: 'folder-dist',
folderNames: ['dist', 'out', 'build', 'release', 'bin', 'distribution'],
folderNames: [
'dist',
'out',
'output',
'build',
'release',
'bin',
'distribution',
],
},
{
name: 'folder-css',
Expand Down Expand Up @@ -714,7 +722,6 @@ export const folderIcons: FolderTheme[] = [
{
name: 'folder-nuxt',
folderNames: ['nuxt'],
enabledFor: [IconPack.Vuex, IconPack.Vue],
},
{
name: 'folder-vue-directives',
Expand Down Expand Up @@ -880,6 +887,10 @@ export const folderIcons: FolderTheme[] = [
name: 'folder-taskfile',
folderNames: ['taskfile', 'taskfiles'],
},
{
name: 'folder-drizzle',
folderNames: ['drizzle'],
},
{
name: 'folder-cloudflare',
folderNames: ['cloudflare'],
Expand Down