Skip to content

Commit

Permalink
fix(all): update version command to use lint-fix (#1119)
Browse files Browse the repository at this point in the history
* fix: update version command to use lint-fix

* fix: update version command to use lint-fix
  • Loading branch information
dreamorosi authored Oct 17, 2022
1 parent 3b5c799 commit 6f14fb3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lerna-prepare": "lerna exec -- npm run build",
"lerna-prepublishOnly": "lerna exec -- npm test && lerna exec -- npm run lint",
"lerna-preversion": "lerna exec -- npm run lint",
"lerna-version": "lerna exec -- npm run format && git add -A src",
"lerna-version": "lerna exec -- npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags",
"docs-website-build-run": "npm run docs-buildDockerImage && npm run docs-runLocalDocker",
"docs-buildDockerImage": "docker build -t powertool-typescript/docs ./docs/",
Expand Down
4 changes: 2 additions & 2 deletions packages/commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"version": "npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/metrics#readme",
Expand All @@ -48,4 +48,4 @@
"serverless",
"nodejs"
]
}
}
4 changes: 2 additions & 2 deletions packages/idempotency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"version": "npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/idempotency#readme",
Expand Down Expand Up @@ -54,4 +54,4 @@
"serverless",
"nodejs"
]
}
}
4 changes: 2 additions & 2 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"version": "npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/logging#readme",
Expand Down Expand Up @@ -64,4 +64,4 @@
"serverless",
"nodejs"
]
}
}
4 changes: 2 additions & 2 deletions packages/metrics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"version": "npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/metrics#readme",
Expand Down Expand Up @@ -59,4 +59,4 @@
"serverless",
"nodejs"
]
}
}
4 changes: 2 additions & 2 deletions packages/tracer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"version": "npm run lint-fix && git add -A src",
"postversion": "git push && git push --tags",
"package": "mkdir -p dist/ && npm pack && mv *.tgz dist/",
"package-bundle": "../../package-bundler.sh tracer-bundle ./dist"
Expand Down Expand Up @@ -62,4 +62,4 @@
"serverless",
"nodejs"
]
}
}

0 comments on commit 6f14fb3

Please sign in to comment.