Skip to content

Commit 7f0eae3

Browse files
committed
rename project
1 parent 7d70cd6 commit 7f0eae3

File tree

7 files changed

+229
-58
lines changed

7 files changed

+229
-58
lines changed

.github/social/preview.png

-2.41 KB
Loading

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: Eomm/why-don-t-you-tweet@v1
1515
if: ${{ !github.event.repository.private }}
1616
with:
17-
tweet-message: "Extension for @code with console snippets ${{ github.event.release.tag_name }} 🐛🔨 is here 🥳\n\n
18-
$ ext install deinsoftware.console-snippets\n\n
17+
tweet-message: "Extension for @code with debug snippets ${{ github.event.release.tag_name }} 🐛🔨 is here 🥳\n\n
18+
$ ext install deinsoftware.debug-snippets\n\n
1919
#vscode #snippets #javascript #typescript #css\n\n
20-
https://marketplace.visualstudio.com/items?itemName=deinsoftware.console-snippets"
20+
https://marketplace.visualstudio.com/items?itemName=deinsoftware.debug-snippets"
2121
env:
2222
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
2323
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Security to invite users to upgrade in case of vulnerabilities.
1313

1414
### Added
1515

16-
- Console snippets
16+
- Debug snippets

README.md

Lines changed: 65 additions & 54 deletions
Large diffs are not rendered by default.

images/dark-icon.png

-90 Bytes
Loading

images/light-icon.png

-87 Bytes
Loading

package.json

Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
{
2+
"name": "debug-snippets",
3+
"description": "VS Code Debug snippets for JS, TS and CSS",
4+
"version": "1.0.0",
5+
"displayName": "Debug Snippets",
6+
"publisher": "deinsoftware",
7+
"icon": "images/light-icon.png",
8+
"keywords": [
9+
"debugger",
10+
"console",
11+
"log",
12+
"snippets",
13+
"css",
14+
"javascript",
15+
"typescript"
16+
],
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/deinsoftware/vscode-debug-snippets"
21+
},
22+
"sponsor": {
23+
"url": "https://ko-fi.com/equiman"
24+
},
25+
"engines": {
26+
"vscode": "^1.58.0"
27+
},
28+
"categories": [
29+
"Snippets"
30+
],
31+
"main": "./out/extension.js",
32+
"browser": "./out/extension.js",
33+
"extensionKind": [
34+
"ui",
35+
"workspace"
36+
],
37+
"activationEvents": [
38+
"onCommand:extension.snippetSearch"
39+
],
40+
"contributes": {
41+
"snippets": [
42+
{
43+
"language": "javascript",
44+
"path": "./snippets/destructuring.json"
45+
},
46+
{
47+
"language": "javascript",
48+
"path": "./snippets/elements.json"
49+
},
50+
{
51+
"language": "javascript",
52+
"path": "./snippets/var-js.json"
53+
},
54+
{
55+
"language": "javascriptreact",
56+
"path": "./snippets/destructuring.json"
57+
},
58+
{
59+
"language": "javascriptreact",
60+
"path": "./snippets/elements.json"
61+
},
62+
{
63+
"language": "javascriptreact",
64+
"path": "./snippets/var-js.json"
65+
},
66+
{
67+
"language": "javascriptreact",
68+
"path": "./snippets/react.json"
69+
},
70+
{
71+
"language": "jsx-attr",
72+
"path": "./snippets/destructuring.json"
73+
},
74+
{
75+
"language": "jsx-attr",
76+
"path": "./snippets/elements.json"
77+
},
78+
{
79+
"language": "jsx-attr",
80+
"path": "./snippets/var-js.json"
81+
},
82+
{
83+
"language": "jsx-attr",
84+
"path": "./snippets/react.json"
85+
},
86+
{
87+
"language": "vue",
88+
"path": "./snippets/destructuring.json"
89+
},
90+
{
91+
"language": "vue",
92+
"path": "./snippets/elements.json"
93+
},
94+
{
95+
"language": "vue",
96+
"path": "./snippets/var-js.json"
97+
},
98+
{
99+
"language": "typescript",
100+
"path": "./snippets/destructuring.json"
101+
},
102+
{
103+
"language": "typescript",
104+
"path": "./snippets/elements.json"
105+
},
106+
{
107+
"language": "typescriptreact",
108+
"path": "./snippets/var-ts.json"
109+
},
110+
{
111+
"language": "typescriptreact",
112+
"path": "./snippets/destructuring.json"
113+
},
114+
{
115+
"language": "typescriptreact",
116+
"path": "./snippets/elements.json"
117+
},
118+
{
119+
"language": "typescriptreact",
120+
"path": "./snippets/react.json"
121+
},
122+
{
123+
"language": "tsx-attr",
124+
"path": "./snippets/var-ts.json"
125+
},
126+
{
127+
"language": "tsx-attr",
128+
"path": "./snippets/destructuring.json"
129+
},
130+
{
131+
"language": "tsx-attr",
132+
"path": "./snippets/elements.json"
133+
},
134+
{
135+
"language": "tsx-attr",
136+
"path": "./snippets/react.json"
137+
},
138+
{
139+
"language": "typescript",
140+
"path": "./snippets/var-ts.json"
141+
},
142+
{
143+
"language": "json",
144+
"path": "./snippets/json.json"
145+
},
146+
{
147+
"language": "jsonc",
148+
"path": "./snippets/json.json"
149+
},
150+
{
151+
"language": "json5",
152+
"path": "./snippets/json.json"
153+
}
154+
]
155+
},
156+
"volta": {
157+
"node": "16.13.1",
158+
"npm": "8.1.2"
159+
}
160+
}

0 commit comments

Comments
 (0)