Skip to content

Commit

Permalink
chore: build extension
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io committed Aug 11, 2024
1 parent 82104ad commit 6d6c82c
Show file tree
Hide file tree
Showing 7 changed files with 623 additions and 29 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ server/
dist/
lib/
tmp/
*.vsix

# Editor
.vscode/
Expand Down
10 changes: 10 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
.github/
.netlify/
.vscode/
coverage/
data/
dist/extension/index.json
dist/extension/icons/
docs/
extension/
icons/
node_modules/
scripts/
test/
themes/
tmp/
.browserslistrc
.commitlintrc
Expand All @@ -16,7 +24,9 @@ tmp/
changelog.config.json
contributing.md
eslint.config.js
netlify.toml
pnpm-lock.yaml
svgo.config.js
tsconfig.json
vite.config.docs.ts
vite.config.extension.ts
Expand Down
Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"name": "eyecons",
"displayName": "Eyecons",
"description": "Advanced VS Code icon theme with adaptive icon colors that match the editor’s color theme",
"version": "0.0.1",
"version": "0.1.0",
"main": "./dist/extension/index.js",
"repository": "azat-io/eyecons",
"author": "Azat S. <[email protected]>",
"publisher": "azat-io",
"license": "MIT",
"icon": "assets/logo.png",
"galleryBanner": {
"theme": "light",
"color": "#fab922"
"theme": "dark",
"color": "#161b22"
},
"keywords": [
"icons",
Expand Down Expand Up @@ -42,8 +42,8 @@
"scripts:svgo": "svgo --folder \"./icons/base\" && svgo --folder \"./icons/files\"",
"release": "pnpm release:check && pnpm release:version && release:package && pnpm release:publish",
"release:check": "pnpm test && pnpm run build",
"release:package": "vsce package",
"release:publish": "vsce publish",
"release:package": "vsce package --no-dependencies",
"release:publish": "vsce publish --no-dependencies",
"release:version": "changelogen --output changelog.md --release --push",
"test:format": "prettier --check \"**/*.{js,ts,jsx,tsx,css,json,md,yml}\"",
"test:css": "stylelint **/*.css",
Expand Down Expand Up @@ -153,12 +153,7 @@
]
},
"engines": {
"vscode": "^1.90.0"
},
"dependencies": {
"culori": "^4.0.1",
"svg-parser": "^2.0.4",
"ts-retry": "^4.2.5"
"vscode": "^1.92.0"
},
"devDependencies": {
"@azat-io/eslint-config-typescript": "^1.10.0",
Expand All @@ -176,7 +171,9 @@
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^2.0.5",
"@vscode/vsce": "^2.31.1",
"browserslist": "^4.23.3",
"culori": "^4.0.1",
"eslint": "^9.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
Expand All @@ -200,8 +197,10 @@
"stylelint-gamut": "^1.3.4",
"stylelint-order": "^6.0.4",
"stylelint-plugin-logical-css": "^1.2.1",
"svg-parser": "^2.0.4",
"svgo": "^3.3.2",
"ts-dedent": "^2.2.0",
"ts-retry": "^4.2.5",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"undici": "^6.19.7",
Expand Down
Loading

0 comments on commit 6d6c82c

Please sign in to comment.