fix(classes.publishmodule): Fix template string in createPackageJson method for export path
This commit is contained in:
		| @@ -1,5 +1,10 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## 2024-10-23 - 1.3.1 - fix(classes.publishmodule) | ||||
| Fix template string in createPackageJson method for export path | ||||
|  | ||||
| - Corrected the syntax for template string in the exports path of created package.json | ||||
|  | ||||
| ## 2024-10-21 - 1.3.0 - feat(core) | ||||
| Add support for multiple registries in the publish process | ||||
|  | ||||
|   | ||||
| @@ -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.' | ||||
| } | ||||
|   | ||||
| @@ -85,7 +85,7 @@ export class PublishModule { | ||||
|       description: '', | ||||
|       exports: { | ||||
|         '.': { | ||||
|           import: './dist_${this.options.packageSubFolder}/index.js', | ||||
|           import: `./dist_${this.options.packageSubFolder}/index.js`, | ||||
|         }, | ||||
|       }, | ||||
|       scripts: { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user