sendscript 0.1.1 → 0.1.2
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/README.md +14 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v0.1.2](https://github.com/bas080/sendscript/compare/v0.1.1...v0.1.2)
|
|
8
|
+
|
|
9
|
+
- Update tap to 10.9.5 [`4e3ddcc`](https://github.com/bas080/sendscript/commit/4e3ddcca823ca64c52bc1966ac23a712480d6c4d)
|
|
10
|
+
|
|
7
11
|
#### [v0.1.1](https://github.com/bas080/sendscript/compare/v0.1.0...v0.1.1)
|
|
8
12
|
|
|
13
|
+
> 4 January 2024
|
|
14
|
+
|
|
9
15
|
- Add a json schema for the sendscript program [`2acf884`](https://github.com/bas080/sendscript/commit/2acf8848134e1ae175afc0af9c5f1e93c4039f8f)
|
|
10
16
|
- Document a way of using sendscript with typescript [`2683c28`](https://github.com/bas080/sendscript/commit/2683c2873b8c4833711cdb00c777792c0630954a)
|
|
11
17
|
- Improve naming of promise helper [`e177f39`](https://github.com/bas080/sendscript/commit/e177f39c740bc16864f1ed4fc90a6daa3321751f)
|
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@ Write JS code that you can run on servers, browsers or other clients.
|
|
|
21
21
|
- [Formatting](#formatting)
|
|
22
22
|
- [Changelog](#changelog)
|
|
23
23
|
- [Dependencies](#dependencies)
|
|
24
|
+
- [License](#license)
|
|
24
25
|
|
|
25
26
|
<!-- tocstop -->
|
|
26
27
|
|
|
@@ -232,11 +233,11 @@ npm t -- report text-summary
|
|
|
232
233
|
```
|
|
233
234
|
```
|
|
234
235
|
|
|
235
|
-
> sendscript@0.1.
|
|
236
|
+
> sendscript@0.1.2 test
|
|
236
237
|
> tap -R silent
|
|
237
238
|
|
|
238
239
|
|
|
239
|
-
> sendscript@0.1.
|
|
240
|
+
> sendscript@0.1.2 test
|
|
240
241
|
> tap report text-summary
|
|
241
242
|
|
|
242
243
|
|
|
@@ -273,6 +274,15 @@ Check if packages are up to date on release.
|
|
|
273
274
|
npm outdated && echo 'No outdated packages found'
|
|
274
275
|
```
|
|
275
276
|
```
|
|
276
|
-
|
|
277
|
-
tap 18.5.2 18.6.1 18.6.1 node_modules/tap sendscript
|
|
277
|
+
No outdated packages found
|
|
278
278
|
```
|
|
279
|
+
|
|
280
|
+
## License
|
|
281
|
+
|
|
282
|
+
See the [LICENSE.txt][license] file for details.
|
|
283
|
+
|
|
284
|
+
[license]:./LICENSE.txt
|
|
285
|
+
[socket.io]:https://socket.io/
|
|
286
|
+
[changelog]:./CHANGELOG.md
|
|
287
|
+
[auto-changelog]:https://www.npmjs.com/package/auto-changelog
|
|
288
|
+
[typedoc]:https://github.com/TypeStrong/typedoc
|