fix(classes.publishmodule): Fix template string in createPackageJson method for export path

This commit is contained in:
2024-10-23 15:48:32 +02:00
parent a656e3e040
commit 5389034108
3 changed files with 7 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tspublish',
version: '1.3.0',
version: '1.3.1',
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
}

View File

@ -85,7 +85,7 @@ export class PublishModule {
description: '',
exports: {
'.': {
import: './dist_${this.options.packageSubFolder}/index.js',
import: `./dist_${this.options.packageSubFolder}/index.js`,
},
},
scripts: {