changesets-gitlab
Advanced tools
Comparing version 0.5.1 to 0.5.2
# changesets-gitlab | ||
## 0.5.2 | ||
### Patch Changes | ||
- [#42](https://github.com/rx-ts/changesets-gitlab/pull/42) [`a6f751a`](https://github.com/rx-ts/changesets-gitlab/commit/a6f751a76725c317625555fef315e1380d9a81f6) Thanks [@pmjhonwang](https://github.com/pmjhonwang)! - some system git version old, `git add -a .` not working at dot prefix dir (such as .changeset), use `git add -A .` instead | ||
## 0.5.1 | ||
@@ -4,0 +10,0 @@ |
@@ -40,3 +40,3 @@ import { exec } from '@actions/exec'; | ||
export const commitAll = async (message) => { | ||
await exec('git', ['add', '.']); | ||
await exec('git', ['add', '-A', '.']); | ||
await exec('git', ['commit', '-m', message]); | ||
@@ -43,0 +43,0 @@ }; |
{ | ||
"name": "changesets-gitlab", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"type": "module", | ||
@@ -41,7 +41,7 @@ "repository": "git+https://github.com/rx-ts/changesets-gitlab.git", | ||
"@actions/exec": "^1.1.0", | ||
"@changesets/assemble-release-plan": "^5.0.3", | ||
"@changesets/config": "^1.6.3", | ||
"@changesets/assemble-release-plan": "^5.0.5", | ||
"@changesets/config": "^1.6.4", | ||
"@changesets/errors": "^0.1.4", | ||
"@changesets/parse": "^0.3.10", | ||
"@changesets/pre": "^1.0.7", | ||
"@changesets/pre": "^1.0.9", | ||
"@changesets/read": "^0.5.0", | ||
@@ -76,6 +76,6 @@ "@changesets/types": "^4.0.0", | ||
"jest": "^27.4.5", | ||
"ts-jest": "^27.1.1", | ||
"ts-jest": "^27.1.3", | ||
"ts-node": "^10.4.0", | ||
"type-coverage": "^2.19.0", | ||
"typescript": "^4.5.4" | ||
"typescript": "^4.5.5" | ||
}, | ||
@@ -82,0 +82,0 @@ "resolutions": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79148
27639