Skip to content

Commit 954bdcb

Browse files
Merge pull request #94 from ArthurLobopro/help-the-project
Help the project
2 parents 92e5732 + 46376b2 commit 954bdcb

File tree

5 files changed

+190
-222
lines changed

5 files changed

+190
-222
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@
4141
* zh-TW. Taiwanese Mandarin (Thanks [CoffeeChaton](https://github.com/CoffeeChaton))
4242
* zh-CN. Chinese Mandarin (Thanks [CoffeeChaton](https://github.com/CoffeeChaton))
4343

44+
## Help the Project
45+
46+
If you want to help the project you can do one or more of these things:
47+
48+
* Leave a good review on [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=ArthurLobo.easy-codesnap&ssr=false#review-details) or [Open VSX](https://open-vsx.org/extension/ArthurLobo/easy-codesnap/reviews).
49+
* Leave a star on [GitHub repository](https://github.com/ArthurLobopro/easy-codesnap).
50+
* Create a feature request with some useful feature.
51+
* Create a pull request fixing something, adding some feature or adding/fixing a translation.
52+
4453
## Acknowledgments
4554

4655
Thank you very much [kufii](https://github.com/kufii/) to made the [CodeSnap extension](https://github.com/kufii/CodeSnap), the base of this project.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "easy-codesnap",
33
"displayName": "Easy CodeSnap",
44
"description": "Take beautiful screenshots of your code 📷",
5-
"version": "1.22.1",
5+
"version": "1.22.2",
66
"l10n": "./l10n",
77
"repository": {
88
"type": "git",
@@ -280,9 +280,9 @@
280280
"@biomejs/biome": "^1.9.4",
281281
"@types/node": "18.x",
282282
"@types/vscode": "^1.96.0",
283-
"esbuild-loader": "^4.2.2",
284-
"typescript": "^5.7.3",
285-
"webpack": "^5.97.1",
283+
"esbuild-loader": "^4.3.0",
284+
"typescript": "^5.8.2",
285+
"webpack": "^5.98.0",
286286
"webpack-cli": "^6.0.1"
287287
},
288288
"dependencies": {

tsconfig.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
{
22
"compilerOptions": {
33
"module": "Node16",
4-
"target": "ES2022",
4+
"target": "ES2024",
55
"outDir": "out",
66
"lib": [
7-
"ES2022"
7+
"ES2024"
88
],
99
"sourceMap": true,
1010
"rootDir": "src",
1111
"strict": true,
1212
"noImplicitReturns": true,
13-
"allowJs": true,
14-
/* enable all strict type-checking options */
15-
/* Additional Checks */
16-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
17-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
18-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
13+
"allowJs": true
1914
},
2015
"exclude": [
2116
"./src/webview/**"

webpack.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"use strict"
44

55
const path = require("path")
6-
const webpack = require("webpack")
7-
86

97
/**
108
* @param {{mode: "production" | "development"}} argv

0 commit comments

Comments
 (0)