Skip to content

Commit

Permalink
chore(release): 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nonara committed Jun 22, 2023
1 parent d10a81b commit 0bba677
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 17 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [3.0.1](https://github.com/nonara/ts-patch/compare/v3.0.0...v3.0.1) (2023-06-22)


### Bug Fixes

* Added explicit error if ts is patched and cached backup is removed ([ac25743](https://github.com/nonara/ts-patch/commit/ac25743140f8f3954aceb8c0e43a731eeeab03a1))
* ESM temp files not cleaned up ([8802054](https://github.com/nonara/ts-patch/commit/8802054481a9f2b4847001cb227db029e0475a72))
* Lock file deletion check ([#102](https://github.com/nonara/ts-patch/issues/102)) ([cacf908](https://github.com/nonara/ts-patch/commit/cacf9084fd4e5a2a1263103f8dc52d2dd7062402))

## [3.0.0](https://github.com/nonara/ts-patch/compare/v2.1.0...v3.0.0) (2023-06-13)


Expand Down
79 changes: 62 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-patch",
"version": "3.0.0",
"version": "3.0.1",
"description": "Patch typescript to support custom transformers in tsconfig.json",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -70,32 +70,77 @@
"jest-mock-process": "^1.4.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"standard-version": "^9.3.2",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-patch": "3.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"standard-version": "^9.5.0"
"typescript": "^5.0.4"
},
"directories": {
"resources": "./dist/resources"
},
"standard-version": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "feature", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "revert", "section": "Reverts"},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "style", "section": "Styles", "hidden": true},
{"type": "chore", "section": "Miscellaneous Chores", "hidden": true},
{"type": "refactor", "section": "Code Refactoring", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration", "hidden": true},
{"type": "change", "section": "Changes"}
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "change",
"section": "Changes"
}
]
}
}

0 comments on commit 0bba677

Please sign in to comment.