Skip to content

Commit 6f14fb3

Browse files
authored
fix(all): update version command to use lint-fix (#1119)
* fix: update version command to use lint-fix * fix: update version command to use lint-fix
1 parent 3b5c799 commit 6f14fb3

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lerna-prepare": "lerna exec -- npm run build",
2828
"lerna-prepublishOnly": "lerna exec -- npm test && lerna exec -- npm run lint",
2929
"lerna-preversion": "lerna exec -- npm run lint",
30-
"lerna-version": "lerna exec -- npm run format && git add -A src",
30+
"lerna-version": "lerna exec -- npm run lint-fix && git add -A src",
3131
"postversion": "git push && git push --tags",
3232
"docs-website-build-run": "npm run docs-buildDockerImage && npm run docs-runLocalDocker",
3333
"docs-buildDockerImage": "docker build -t powertool-typescript/docs ./docs/",

Diff for: packages/commons/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"prepare": "npm run build",
2424
"prepublishOnly": "npm test && npm run lint",
2525
"preversion": "npm run lint",
26-
"version": "npm run format && git add -A src",
26+
"version": "npm run lint-fix && git add -A src",
2727
"postversion": "git push && git push --tags"
2828
},
2929
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/metrics#readme",
@@ -48,4 +48,4 @@
4848
"serverless",
4949
"nodejs"
5050
]
51-
}
51+
}

Diff for: packages/idempotency/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prepare": "npm run build",
2727
"prepublishOnly": "npm test && npm run lint",
2828
"preversion": "npm run lint",
29-
"version": "npm run format && git add -A src",
29+
"version": "npm run lint-fix && git add -A src",
3030
"postversion": "git push && git push --tags"
3131
},
3232
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/idempotency#readme",
@@ -54,4 +54,4 @@
5454
"serverless",
5555
"nodejs"
5656
]
57-
}
57+
}

Diff for: packages/logger/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prepare": "npm run build",
2727
"prepublishOnly": "npm test && npm run lint",
2828
"preversion": "npm run lint",
29-
"version": "npm run format && git add -A src",
29+
"version": "npm run lint-fix && git add -A src",
3030
"postversion": "git push && git push --tags"
3131
},
3232
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/logging#readme",
@@ -64,4 +64,4 @@
6464
"serverless",
6565
"nodejs"
6666
]
67-
}
67+
}

Diff for: packages/metrics/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prepare": "npm run build",
2727
"prepublishOnly": "npm test && npm run lint",
2828
"preversion": "npm run lint",
29-
"version": "npm run format && git add -A src",
29+
"version": "npm run lint-fix && git add -A src",
3030
"postversion": "git push && git push --tags"
3131
},
3232
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript/tree/master/packages/metrics#readme",
@@ -59,4 +59,4 @@
5959
"serverless",
6060
"nodejs"
6161
]
62-
}
62+
}

Diff for: packages/tracer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"prepare": "npm run build",
2525
"prepublishOnly": "npm test && npm run lint",
2626
"preversion": "npm run lint",
27-
"version": "npm run format && git add -A src",
27+
"version": "npm run lint-fix && git add -A src",
2828
"postversion": "git push && git push --tags",
2929
"package": "mkdir -p dist/ && npm pack && mv *.tgz dist/",
3030
"package-bundle": "../../package-bundler.sh tracer-bundle ./dist"
@@ -62,4 +62,4 @@
6262
"serverless",
6363
"nodejs"
6464
]
65-
}
65+
}

0 commit comments

Comments
 (0)