Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
86e9bbe
feat(icons): add PackShip package builder icon
CodeNKoffee Mar 24, 2025
eabb94b
Merge branch 'main' into feat/packship-icon
CodeNKoffee Mar 24, 2025
93d27e1
Delete package-lock.json
CodeNKoffee Mar 24, 2025
0d049c3
Merge branch 'main' into feat/packship-icon
CodeNKoffee Mar 26, 2025
7398871
fix: Added margin spacing for the icon and removed the white backgrou…
CodeNKoffee Mar 26, 2025
13ccb18
feat: Added new packship icon variant for light mode editors
CodeNKoffee Mar 26, 2025
22c7eb4
Enabled light and dark mode configurations in fileIcons.ts
CodeNKoffee Mar 26, 2025
3c95627
Simplified the file extensions recognition for packship
CodeNKoffee Mar 26, 2025
fb7a039
Delete package-lock.json
CodeNKoffee Mar 26, 2025
9fac767
refactor: make the icons smaller in size and better margin optimized
CodeNKoffee Apr 1, 2025
bbff9d6
fix: pass color test with suggested colors
CodeNKoffee Apr 1, 2025
4b8ea78
fix: add missing/trailing comma
CodeNKoffee Apr 1, 2025
35964f2
Merge branch 'main' into feat/packship-icon
CodeNKoffee Apr 1, 2025
3a5baad
Merge branch 'main' into feat/packship-icon
CodeNKoffee Apr 2, 2025
12c5ce8
Merge branch 'main' into feat/packship-icon
CodeNKoffee Apr 7, 2025
f281b84
refactor: one chromatic color for the packship icon
CodeNKoffee Apr 7, 2025
bc4a500
refactor: one chromatic color for the packship icon
CodeNKoffee Apr 7, 2025
e25da5a
Merge branch 'feat/packship-icon' of https://github.com/CodeNKoffee/v…
CodeNKoffee Apr 7, 2025
8d4ddce
Merge branch 'main' into feat/packship-icon
CodeNKoffee Apr 9, 2025
fd82d8d
Remove DS Store files
PKief Apr 9, 2025
5191f37
Reduce file size of icon by reshaping it
PKief Apr 9, 2025
4815bc3
Merge branch 'main' into feat/packship-icon
CodeNKoffee Apr 12, 2025
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
5 changes: 5 additions & 0 deletions icons/packship.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/core/icons/fileIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3079,5 +3079,19 @@ export const fileIcons: FileIcons = {
{ name: 'regedit', fileExtensions: ['reg'] },
{ name: 'cline', fileNames: ['.clinerules'] },
{ name: 'gnuplot', fileExtensions: ['gnu'] },
{
name: 'packship',
fileNames: [
'.packshiprc',
'.packshiprc.json',
'.packshiprc.js',
'.packshiprc.ts',
'packship.config.js',
'packship.config.ts',
'packship.config.mjs',
'packship.config.mts',
'packship.config.json',
],
},
]),
};