Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
4892c8f7ae | |||
687f01d1a3 |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-07-22 - 2.1.84 - fix(cli)
|
||||||
|
Fixed transpilation order issue in tsfolders command
|
||||||
|
|
||||||
|
- Corrected the transpilation order so 'ts_shared' is processed before other folders in the 'tsfolders' CLI command.
|
||||||
|
|
||||||
## 2024-07-21 - 2.1.83 - fix(cli)
|
## 2024-07-21 - 2.1.83 - fix(cli)
|
||||||
Ensure 'ts_shared' folder is compiled first if present
|
Ensure 'ts_shared' folder is compiled first if present
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbuild",
|
"name": "@git.zone/tsbuild",
|
||||||
"version": "2.1.83",
|
"version": "2.1.84",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "TypeScript nightly to easily make use of latest features",
|
"description": "TypeScript nightly to easily make use of latest features",
|
||||||
"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: '2.1.83',
|
version: '2.1.84',
|
||||||
description: 'TypeScript nightly to easily make use of latest features'
|
description: 'TypeScript nightly to easily make use of latest features'
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ export const runCli = async () => {
|
|||||||
const indexShared = tsFolders.indexOf('ts_shared');
|
const indexShared = tsFolders.indexOf('ts_shared');
|
||||||
if (indexShared > -1) {
|
if (indexShared > -1) {
|
||||||
tsFolders.splice(indexShared, 1);
|
tsFolders.splice(indexShared, 1);
|
||||||
tsFolders.unshift('ts_interfaces');
|
tsFolders.unshift('ts_shared');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user