6 Commits

Author SHA1 Message Date
5f9bd73904 1.5.0
Some checks failed
Default (tags) / security (push) Failing after 2s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-10-28 01:21:06 +01:00
91f3c90607 feat(classes.publishmodule): Add method to create and write tsconfig.json during publish module setup 2024-10-28 01:21:06 +01:00
f518670443 1.4.0
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-10-26 14:08:23 +02:00
dc97693ec8 feat(core): Refactor directory reading and module discovery for publishing process 2024-10-26 14:08:23 +02:00
386504b0fb 1.3.3
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 4s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-10-23 15:59:26 +02:00
a7c631bba1 fix(core): Fix logging mechanism on existing package version check 2024-10-23 15:59:26 +02:00
8 changed files with 3132 additions and 4137 deletions

View File

@ -1,5 +1,23 @@
# Changelog # Changelog
## 2024-10-28 - 1.5.0 - feat(classes.publishmodule)
Add method to create and write tsconfig.json during publish module setup
- Introduced createTsconfigJson method in PublishModule class to generate a tsconfig.json for each publishable module.
- Modified createPublishModuleDir method to include writing of tsconfig.json file.
## 2024-10-26 - 1.4.0 - feat(core)
Refactor directory reading and module discovery for publishing process
- Renamed 'readDirectory' method to 'getModuleSubDirs' for clarity in describing function purpose.
- Enhanced 'getModuleSubDirs' to return module information including parsed 'tspublish.json' data for each module.
- Introduced new 'interfaces' directory to define TypeScript interfaces like 'ITsPublishJson'.
## 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) ## 2024-10-23 - 1.3.2 - fix(core)
Corrected file patterns in dynamically created package.json files. Corrected file patterns in dynamically created package.json files.

View File

@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tspublish", "name": "@git.zone/tspublish",
"version": "1.3.2", "version": "1.5.0",
"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",

7192
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tspublish', name: '@git.zone/tspublish',
version: '1.3.2', version: '1.5.0',
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.'
} }

View File

@ -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);
);
} }
} }
} }
@ -77,6 +76,31 @@ export class PublishModule {
return packageInfo.allVersions[0].version; return packageInfo.allVersions[0].version;
} }
public async createTsconfigJson() {
const originalTsConfig = plugins.smartfile.fs.toObjectSync(
plugins.path.join(paths.cwd, 'tsconfig.json')
);
for (const path of originalTsConfig.compilerOptions.paths) {
originalTsConfig.compilerOptions.paths[path][0] = `.${originalTsConfig.compilerOptions.paths[path][0]}`;
}
const tsconfigJson = {
compilerOptions: {
experimentalDecorators: true,
useDefineForClassFields: false,
target: 'ES2022',
module: 'NodeNext',
moduleResolution: 'NodeNext',
esModuleInterop: true,
verbatimModuleSyntax: true,
paths: originalTsConfig.compilerOptions.paths,
},
exclude: [
'dist_*/**/*.d.ts',
],
};
return JSON.stringify(tsconfigJson, null, 2);
}
public async createPackageJson() { public async createPackageJson() {
const packageJson = { const packageJson = {
name: this.options.name, name: this.options.name,
@ -126,6 +150,14 @@ export class PublishModule {
); );
await packageJson.write(); await packageJson.write();
// tsconfig.json
const originalTsConfigJson = await plugins.smartfile.SmartFile.fromString(
plugins.path.join(this.options.publishModDirFullPath, 'tsconfig.json'),
await this.createTsconfigJson(),
'utf8'
);
await originalTsConfigJson.write();
// ts folder // ts folder
await plugins.smartfile.fs.copy( await plugins.smartfile.fs.copy(
this.options.packageSubFolderFullPath, this.options.packageSubFolderFullPath,

View File

@ -1,5 +1,6 @@
import { logger } from './logging.js'; import { logger } from './logging.js';
import * as plugins from './plugins.js'; import * as plugins from './plugins.js';
import * as interfaces from './interfaces/index.js';
import { PublishModule } from './classes.publishmodule.js'; import { PublishModule } from './classes.publishmodule.js';
@ -7,8 +8,8 @@ export class TsPublish {
constructor() {} constructor() {}
public async publish (monorepoDirArg: string) { public async publish (monorepoDirArg: string) {
const publishModules = await this.readDirectory(monorepoDirArg); const publishModules = await this.getModuleSubDirs(monorepoDirArg);
for (const publishModule of publishModules) { for (const publishModule of Object.keys(publishModules)) {
const publishModuleInstance = new PublishModule({ const publishModuleInstance = new PublishModule({
monoRepoDir: monorepoDirArg, monoRepoDir: monorepoDirArg,
packageSubFolder: publishModule, packageSubFolder: publishModule,
@ -20,9 +21,9 @@ export class TsPublish {
} }
} }
public async readDirectory (dirArg: string) { public async getModuleSubDirs (dirArg: string) {
const subDirs = await plugins.smartfile.fs.listFolders(dirArg); const subDirs = await plugins.smartfile.fs.listFolders(dirArg);
const publishModules: string[] = []; const publishModules: {[key: string]: interfaces.ITsPublishJson} = {};
for (const subDir of subDirs) { for (const subDir of subDirs) {
if (!subDir.startsWith('ts')) { if (!subDir.startsWith('ts')) {
continue; continue;
@ -33,7 +34,7 @@ export class TsPublish {
continue; continue;
} }
logger.log('info', `found publish module: ${subDir}`); logger.log('info', `found publish module: ${subDir}`);
publishModules.push(subDir); publishModules[subDir] = JSON.parse(plugins.smartfile.fs.toStringSync(plugins.path.join(subDir, 'tspublish.json')));
} }
logger.log('ok', `found ${publishModules.length} publish modules`); logger.log('ok', `found ${publishModules.length} publish modules`);
return publishModules; return publishModules;

1
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './tspublish.js';

View File

@ -0,0 +1,5 @@
export interface ITsPublishJson {
name: string;
dependencies: string[];
registries: string[];
}