@ti-engine/web-framework 1.20.0 → 1.20.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 +7 -0
- package/package.json +1 -1
- package/types/bin/web-server.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This document will contain the list of changes made to the framework. The format is based on the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
|
|
4
4
|
|
|
5
|
+
## Version 1.20.1
|
|
6
|
+
|
|
7
|
+
* fix(types): emit `/// <reference types="node" />` into `web-server.d.ts`, which names `node:http`.
|
|
8
|
+
Without it a consumer who has not separately configured Node's types gets `TS2591` from inside the
|
|
9
|
+
published declarations. See `@ti-engine/core` 1.9.1 for why the 1.20.0 gate did not catch this
|
|
10
|
+
* build(release): bump package version from `1.20.0` to `1.20.1`
|
|
11
|
+
|
|
5
12
|
## Version 1.20.0
|
|
6
13
|
|
|
7
14
|
TypeScript declarations now ship with the package, verified against a consumer type-checking with `skipLibCheck: false`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ti-engine/web-framework",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "A web-framework based on the ti-engine. It provides a customizable ready-to-use web-server microservice and a set of tools for creating web applications. NOTICE: This is still a work in progress and the full architecture, design, and functionality are not available!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ti-engine",
|