@stryke/open-browser 0.2.16 â 0.2.18
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 +20 -23
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
24
|
<br />
|
|
25
|
-
This package is part of Storm Software's
|
|
25
|
+
This package is part of Storm Software's **đĨ Stryke** monorepo. Stryke packages TypeScript utility packages with shared functionality common to many Storm Software applications.
|
|
26
26
|
|
|
27
27
|
<br />
|
|
28
28
|
|
|
29
29
|
<h3 align="center">đģ Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
30
30
|
|
|
31
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
32
32
|
|
|
33
33
|
> [!IMPORTANT] Important
|
|
34
34
|
> This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be available through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
|
|
@@ -51,25 +51,22 @@ A package containing a helper function to open URLs in the default browser.
|
|
|
51
51
|
|
|
52
52
|
<!-- START doctoc -->
|
|
53
53
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
54
|
-
|
|
55
54
|
## Table of Contents
|
|
56
55
|
|
|
57
|
-
- [
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
- [
|
|
61
|
-
- [
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
- [Contributing](#contributing)
|
|
72
|
-
- [Contributors](#contributors)
|
|
56
|
+
- [Installing](#installing)
|
|
57
|
+
- [Reduced Package Size](#reduced-package-size)
|
|
58
|
+
- [Development](#development)
|
|
59
|
+
- [Building](#building)
|
|
60
|
+
- [Running unit tests](#running-unit-tests)
|
|
61
|
+
- [Linting](#linting)
|
|
62
|
+
- [Acknowledgements](#acknowledgements)
|
|
63
|
+
- [Storm Workspaces](#storm-workspaces)
|
|
64
|
+
- [Roadmap](#roadmap)
|
|
65
|
+
- [Support](#support)
|
|
66
|
+
- [License](#license)
|
|
67
|
+
- [Changelog](#changelog)
|
|
68
|
+
- [Contributing](#contributing)
|
|
69
|
+
- [Contributors](#contributors)
|
|
73
70
|
|
|
74
71
|
<!-- END doctoc -->
|
|
75
72
|
|
|
@@ -101,10 +98,10 @@ yarn add -D @stryke/cli
|
|
|
101
98
|
|
|
102
99
|
## Reduced Package Size
|
|
103
100
|
|
|
104
|
-
This project uses [tsdown](https://tsdown.dev) to package the source code
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
101
|
+
This project uses [tsdown](https://tsdown.dev) to package the source code due to
|
|
102
|
+
its ability to remove unused code and ship smaller javascript files thanks to
|
|
103
|
+
code splitting. This helps to greatly reduce the size of the package and to make
|
|
104
|
+
it easier to use in other projects.
|
|
108
105
|
|
|
109
106
|
## Development
|
|
110
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/open-browser",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing helper function to open URLs in the default browser",
|
|
6
6
|
"repository": {
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"tsdown": "^0.17.0"
|
|
18
18
|
},
|
|
19
19
|
"publishConfig": { "access": "public" },
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "c8a41f4980775657fd816d9958b2f7eaf596d48d"
|
|
21
21
|
}
|