Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
386504b0fb | |||
a7c631bba1 | |||
5922249742 | |||
274b730492 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-23 - 1.3.3 - fix(core)
|
||||||
|
Fix logging mechanism on existing package version check
|
||||||
|
|
||||||
|
- Changed the error handling mechanism when a package with the same version already exists to use logger and process exit instead of throwing an error.
|
||||||
|
|
||||||
|
## 2024-10-23 - 1.3.2 - fix(core)
|
||||||
|
Corrected file patterns in dynamically created package.json files.
|
||||||
|
|
||||||
|
- Fixed incorrect file pattern from 'ts_web/**/*' to 'ts_*/**/*' in package.json creation process to include all subdirectories starting with 'ts'.
|
||||||
|
|
||||||
## 2024-10-23 - 1.3.1 - fix(classes.publishmodule)
|
## 2024-10-23 - 1.3.1 - fix(classes.publishmodule)
|
||||||
Fix template string in createPackageJson method for export path
|
Fix template string in createPackageJson method for export path
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tspublish",
|
"name": "@git.zone/tspublish",
|
||||||
"version": "1.3.1",
|
"version": "1.3.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.",
|
"description": "A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tspublish',
|
name: '@git.zone/tspublish',
|
||||||
version: '1.3.1',
|
version: '1.3.3',
|
||||||
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
|
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
|
||||||
}
|
}
|
||||||
|
@ -61,9 +61,8 @@ export class PublishModule {
|
|||||||
const availableVersions = packageInfo.allVersions.map((versionArg) => versionArg.version);
|
const availableVersions = packageInfo.allVersions.map((versionArg) => versionArg.version);
|
||||||
logger.log('info', `available versions are: ${availableVersions.toString()}`);
|
logger.log('info', `available versions are: ${availableVersions.toString()}`);
|
||||||
if (availableVersions.includes(this.options.version)) {
|
if (availableVersions.includes(this.options.version)) {
|
||||||
throw new Error(
|
logger.log('error', `package ${this.options.name} already exists with version ${this.options.version}`);
|
||||||
`package ${this.options.name} already exists with version ${this.options.version}`
|
process.exit(1);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -97,7 +96,7 @@ export class PublishModule {
|
|||||||
},
|
},
|
||||||
files: [
|
files: [
|
||||||
'ts/**/*',
|
'ts/**/*',
|
||||||
'ts_web/**/*',
|
'ts_*/**/*',
|
||||||
'dist/**/*',
|
'dist/**/*',
|
||||||
'dist_*/**/*',
|
'dist_*/**/*',
|
||||||
'dist_ts/**/*',
|
'dist_ts/**/*',
|
||||||
|
Reference in New Issue
Block a user