Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5922249742 | |||
274b730492 | |||
5bdc3e8bcc | |||
5389034108 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 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)
|
||||||
|
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)
|
## 2024-10-21 - 1.3.0 - feat(core)
|
||||||
Add support for multiple registries in the publish process
|
Add support for multiple registries in the publish process
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tspublish",
|
"name": "@git.zone/tspublish",
|
||||||
"version": "1.3.0",
|
"version": "1.3.2",
|
||||||
"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.0',
|
version: '1.3.2',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@ export class PublishModule {
|
|||||||
description: '',
|
description: '',
|
||||||
exports: {
|
exports: {
|
||||||
'.': {
|
'.': {
|
||||||
import: './dist_${this.options.packageSubFolder}/index.js',
|
import: `./dist_${this.options.packageSubFolder}/index.js`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
scripts: {
|
scripts: {
|
||||||
@ -97,7 +97,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