pascal-vscode 0.1.0-beta.4 → 0.1.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +31 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# pascal-vscode
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`a148d99`](https://github.com/hadez8877/pascal/commit/a148d9996088459c161f9201c852cecd8dff1d78) Thanks [@hadez8877](https://github.com/hadez8877)! - Fixes preview image not showing in VS Code Marketplace and OpenVSX
|
|
8
|
+
|
|
3
9
|
## 0.1.0-beta.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,14 +3,42 @@
|
|
|
3
3
|
"displayName": "Pascal",
|
|
4
4
|
"publisher": "hadez8877",
|
|
5
5
|
"description": "A modern dark theme for many editors, shells, and more!",
|
|
6
|
-
"version": "0.1.0-beta.
|
|
6
|
+
"version": "0.1.0-beta.5",
|
|
7
7
|
"type": "module",
|
|
8
|
+
"icon": "assets/icon.png",
|
|
8
9
|
"main": "dist/extension.js",
|
|
9
10
|
"browser": "dist/browser.js",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/hadez8877/pascal.git",
|
|
14
|
+
"directory": "packages/editors/vscode"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@types/node": "^24.10.1",
|
|
18
|
+
"@types/vscode": "^1.88.0",
|
|
19
|
+
"@vscode/vsce": "^3.9.2",
|
|
20
|
+
"esbuild": "0.27.3",
|
|
21
|
+
"eslint": "^10.7.0",
|
|
22
|
+
"eslint-plugin-regexp": "^3.1.1",
|
|
23
|
+
"kleur": "^4.1.5",
|
|
24
|
+
"ovsx": "^0.10.12",
|
|
25
|
+
"prettier": "^3.9.5",
|
|
26
|
+
"tinyglobby": "^0.2.16",
|
|
27
|
+
"turbo": "2.10.4",
|
|
28
|
+
"typescript": "^6.0.3"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"marked": "^18.0.6"
|
|
32
|
+
},
|
|
10
33
|
"categories": [
|
|
11
34
|
"Themes"
|
|
12
35
|
],
|
|
13
|
-
"
|
|
36
|
+
"keywords": [
|
|
37
|
+
"pascal",
|
|
38
|
+
"vsc-theme",
|
|
39
|
+
"theme",
|
|
40
|
+
"vscode"
|
|
41
|
+
],
|
|
14
42
|
"activationEvents": [
|
|
15
43
|
"onStartupFinished"
|
|
16
44
|
],
|
|
@@ -42,28 +70,7 @@
|
|
|
42
70
|
}
|
|
43
71
|
}
|
|
44
72
|
},
|
|
45
|
-
"
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://github.com/hadez8877/pascal.git",
|
|
48
|
-
"directory": "packages/editors/vscode"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@types/node": "^24.10.1",
|
|
52
|
-
"@types/vscode": "^1.88.0",
|
|
53
|
-
"@vscode/vsce": "^3.9.2",
|
|
54
|
-
"esbuild": "0.27.3",
|
|
55
|
-
"eslint": "^10.7.0",
|
|
56
|
-
"eslint-plugin-regexp": "^3.1.1",
|
|
57
|
-
"kleur": "^4.1.5",
|
|
58
|
-
"ovsx": "^0.10.12",
|
|
59
|
-
"prettier": "^3.9.5",
|
|
60
|
-
"tinyglobby": "^0.2.16",
|
|
61
|
-
"turbo": "2.10.4",
|
|
62
|
-
"typescript": "^6.0.3"
|
|
63
|
-
},
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"marked": "^18.0.6"
|
|
66
|
-
},
|
|
73
|
+
"readme": "README.md",
|
|
67
74
|
"license": "MIT",
|
|
68
75
|
"engines": {
|
|
69
76
|
"vscode": "^1.88.0"
|