Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
31834e0b3e | |||
c6c94866bb | |||
09a648b435 | |||
065e0baaf7 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-04 - 2.2.6 - fix(package)
|
||||||
|
Fix repository URL in package.json
|
||||||
|
|
||||||
|
- Updated repository URL in package.json to point to the correct Git repository.
|
||||||
|
|
||||||
|
## 2025-03-04 - 2.2.5 - fix(package.json)
|
||||||
|
Update repository URLs in package metadata.
|
||||||
|
|
||||||
|
- Corrected the 'bugs.url' and 'homepage' fields with the accurate URLs.
|
||||||
|
|
||||||
## 2025-03-04 - 2.2.4 - fix(core)
|
## 2025-03-04 - 2.2.4 - fix(core)
|
||||||
Fix compiler logic to remove duplicate compiled files and improve glob pattern handling.
|
Fix compiler logic to remove duplicate compiled files and improve glob pattern handling.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbuild",
|
"name": "@git.zone/tsbuild",
|
||||||
"version": "2.2.4",
|
"version": "2.2.6",
|
||||||
"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",
|
||||||
@ -16,7 +16,7 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+ssh://git@gitlab.com/pushrocks/tsn.git"
|
"url": "https://code.foss.global/git.zone/tsbuild.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
@ -32,9 +32,9 @@
|
|||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitlab.com/pushrocks/tsn/issues"
|
"url": "https://code.foss.global/git.zone/tsbuild/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/tsn#README",
|
"homepage": "https://code.foss.global/git.zone/tsbuild#README",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@git.zone/tspublish": "^1.9.1",
|
"@git.zone/tspublish": "^1.9.1",
|
||||||
"@push.rocks/early": "^4.0.4",
|
"@push.rocks/early": "^4.0.4",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbuild',
|
name: '@git.zone/tsbuild',
|
||||||
version: '2.2.4',
|
version: '2.2.6',
|
||||||
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