Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e6b91b891 | |||
| e40e8f6a77 | |||
| ebe7afce82 | |||
| 27aa318054 | |||
| 9a071ce82f | |||
| ad227ded73 |
18
changelog.md
18
changelog.md
@@ -1,5 +1,23 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-12-13 - 3.1.3 - fix(npmextra)
|
||||||
|
Align npmextra.json package name with package.json (@git.zone/tsbuild)
|
||||||
|
|
||||||
|
- Corrected npmPackagename in npmextra.json from "@gitzone/tsbuild" to "@git.zone/tsbuild" to match package.json and README
|
||||||
|
- Metadata-only change: no code or API behavior affected
|
||||||
|
|
||||||
|
## 2025-11-28 - 3.1.2 - fix(TsBuild)
|
||||||
|
Set default TypeScript target to ESNext
|
||||||
|
|
||||||
|
- Default compiler target changed from ScriptTarget.ES2024 to ScriptTarget.ESNext in ts/tsbuild.classes.tsbuild.ts
|
||||||
|
- Aligns the default compiler options with documentation and ensures use of the latest language features
|
||||||
|
|
||||||
|
## 2025-11-27 - 3.1.1 - fix(compiler)
|
||||||
|
Update default TypeScript target to ES2024
|
||||||
|
|
||||||
|
- Default compiler option 'target' changed from ScriptTarget.ESNext to ScriptTarget.ES2024 in ts/tsbuild.classes.tsbuild.ts
|
||||||
|
- Aligns emitted code to ES2024 language features by default
|
||||||
|
|
||||||
## 2025-11-17 - 3.1.0 - feat(tsbuild.classes)
|
## 2025-11-17 - 3.1.0 - feat(tsbuild.classes)
|
||||||
Update default TypeScript lib to lib.esnext.d.ts
|
Update default TypeScript lib to lib.esnext.d.ts
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"gitscope": "gitzone",
|
"gitscope": "gitzone",
|
||||||
"gitrepo": "tsbuild",
|
"gitrepo": "tsbuild",
|
||||||
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
||||||
"npmPackagename": "@gitzone/tsbuild",
|
"npmPackagename": "@git.zone/tsbuild",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbuild",
|
"name": "@git.zone/tsbuild",
|
||||||
"version": "3.1.0",
|
"version": "3.1.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbuild',
|
name: '@git.zone/tsbuild',
|
||||||
version: '3.1.0',
|
version: '3.1.3',
|
||||||
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user