sendscript 2.3.0 → 2.3.1
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
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
|
+
#### [v2.3.1](https://github.com/bas080/sendscript/compare/v2.3.0...v2.3.1)
|
|
8
|
+
|
|
9
|
+
- Update typedoc dev dep to 0.28.19 [`69e8cc4`](https://github.com/bas080/sendscript/commit/69e8cc48251af650c02faf3214ff0f9c2b61dbc9)
|
|
10
|
+
|
|
7
11
|
#### [v2.3.0](https://github.com/bas080/sendscript/compare/v2.2.0...v2.3.0)
|
|
8
12
|
|
|
13
|
+
> 14 April 2026
|
|
14
|
+
|
|
9
15
|
- Add support for then and catch [`c0bbea8`](https://github.com/bas080/sendscript/commit/c0bbea8efcc6b262c091d9043e96ac8c3f7606e1)
|
|
10
16
|
- Document .catch and .then support [`b35009a`](https://github.com/bas080/sendscript/commit/b35009ace9761d32c0c6ef1d1d045bed2ecfe74e)
|
|
11
17
|
|
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ Write JS code that you can run on servers, browsers or other clients.
|
|
|
29
29
|
- [Formatting](#formatting)
|
|
30
30
|
- [Changelog](#changelog)
|
|
31
31
|
- [Dependencies](#dependencies)
|
|
32
|
+
- [License](#license)
|
|
33
|
+
- [Roadmap](#roadmap)
|
|
32
34
|
|
|
33
35
|
<!-- tocstop -->
|
|
34
36
|
|
|
@@ -442,11 +444,11 @@ npm t -- report text-summary
|
|
|
442
444
|
```
|
|
443
445
|
```
|
|
444
446
|
|
|
445
|
-
> sendscript@2.3.
|
|
447
|
+
> sendscript@2.3.1 test
|
|
446
448
|
> tap -R silent
|
|
447
449
|
|
|
448
450
|
|
|
449
|
-
> sendscript@2.3.
|
|
451
|
+
> sendscript@2.3.1 test
|
|
450
452
|
> tap report text-summary
|
|
451
453
|
|
|
452
454
|
|
|
@@ -483,6 +485,19 @@ Check if packages are up to date on release.
|
|
|
483
485
|
npm outdated && echo 'No outdated packages found'
|
|
484
486
|
```
|
|
485
487
|
```
|
|
486
|
-
|
|
487
|
-
typedoc 0.28.18 0.28.19 0.28.19 node_modules/typedoc master
|
|
488
|
+
No outdated packages found
|
|
488
489
|
```
|
|
490
|
+
|
|
491
|
+
## License
|
|
492
|
+
|
|
493
|
+
See the [LICENSE.txt][license] file for details.
|
|
494
|
+
|
|
495
|
+
## Roadmap
|
|
496
|
+
|
|
497
|
+
- [ ] Support for simple lambdas to compose functions more easily.
|
|
498
|
+
|
|
499
|
+
[license]:./LICENSE.txt
|
|
500
|
+
[socket.io]:https://socket.io/
|
|
501
|
+
[changelog]:./CHANGELOG.md
|
|
502
|
+
[auto-changelog]:https://www.npmjs.com/package/auto-changelog
|
|
503
|
+
[typedoc]:https://github.com/TypeStrong/typedoc
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
> **add**(`a`, `b`): `number`
|
|
10
10
|
|
|
11
|
-
Defined in: [math.ts:1](https://github.com/bas080/sendscript/blob/
|
|
11
|
+
Defined in: [math.ts:1](https://github.com/bas080/sendscript/blob/69e8cc48251af650c02faf3214ff0f9c2b61dbc9/example/typescript/math.ts#L1)
|
|
12
12
|
|
|
13
13
|
## Parameters
|
|
14
14
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
> **square**(`a`): `number`
|
|
10
10
|
|
|
11
|
-
Defined in: [math.ts:2](https://github.com/bas080/sendscript/blob/
|
|
11
|
+
Defined in: [math.ts:2](https://github.com/bas080/sendscript/blob/69e8cc48251af650c02faf3214ff0f9c2b61dbc9/example/typescript/math.ts#L2)
|
|
12
12
|
|
|
13
13
|
## Parameters
|
|
14
14
|
|