convert-csv-to-json 2.18.0 → 2.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "2.18.0",
3
+ "version": "2.19.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -41,6 +41,7 @@ push_git_info(){
41
41
  COMMIT_ID=$(git rev-parse HEAD);
42
42
  git commit --amend -m "new release $TAG [skip ci]";
43
43
  echo "new commit message: $(git log -1 --pretty=format:"%s")";
44
+ git tag -d $TAG # delete the old tag locally
44
45
  git tag $TAG $COMMIT_ID;
45
46
  git push;
46
47
  git push origin refs/tags/$TAG;