@stryke/open-browser 0.2.13 → 0.2.14
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/README.md +13 -4
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -3,7 +3,13 @@
|
|
|
3
3
|
<!-- markdownlint-disable -->
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
<div align="center"
|
|
6
|
+
<div align="center">
|
|
7
|
+
<picture>
|
|
8
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark-optimized.gif">
|
|
9
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light-optimized.gif">
|
|
10
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark-optimized.gif" width="100%" alt="Storm Software" />
|
|
11
|
+
</picture>
|
|
12
|
+
</div>
|
|
7
13
|
<br />
|
|
8
14
|
|
|
9
15
|
<div align="center">
|
|
@@ -95,7 +101,7 @@ yarn add -D @stryke/cli
|
|
|
95
101
|
|
|
96
102
|
## Reduced Package Size
|
|
97
103
|
|
|
98
|
-
This project uses [
|
|
104
|
+
This project uses [tsdown](https://tsdown.dev) to package the source code
|
|
99
105
|
due to its ability to remove unused code and ship smaller javascript files
|
|
100
106
|
thanks to code splitting. This helps to greatly reduce the size of the package
|
|
101
107
|
and to make it easier to use in other projects.
|
|
@@ -249,10 +255,13 @@ specification. Contributions of any kind welcome!
|
|
|
249
255
|
<br />
|
|
250
256
|
|
|
251
257
|
<hr />
|
|
252
|
-
<br />
|
|
253
258
|
|
|
254
259
|
<div align="center">
|
|
255
|
-
<
|
|
260
|
+
<picture>
|
|
261
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark-optimized.webp">
|
|
262
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light-optimized.webp">
|
|
263
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark-optimized.webp" width="100%" alt="Storm Software" />
|
|
264
|
+
</picture>
|
|
256
265
|
</div>
|
|
257
266
|
<br />
|
|
258
267
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/open-browser",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing helper function to open URLs in the default browser",
|
|
6
6
|
"repository": {
|
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
"dependencies": { "cross-spawn": "^7.0.6" },
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/cross-spawn": "^6.0.6",
|
|
16
|
-
"@types/node": "^24.10.1"
|
|
16
|
+
"@types/node": "^24.10.1",
|
|
17
|
+
"tsdown": "^0.17.0"
|
|
17
18
|
},
|
|
18
19
|
"publishConfig": { "access": "public" },
|
|
19
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "dff1b177a99a3cdf27a6abe11e4ab7403e1f5cd5"
|
|
20
21
|
}
|