Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO-1530: Upgrade constructs #1073

Merged
merged 10 commits into from
Sep 29, 2023
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.18.1
20.7.0
293 changes: 293 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
},
"homepage": "https://github.com/aligent/aws-cdk-constructs#readme",
"scripts": {
"build": "",
"prepublish": "",
"build": "tsc",
"prepublish": "tsc",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why tsc on prepublish? 🤔 Just thinking in the pipeline we'd probably build and then publish so this would run tsc twice. If we're just gonna run publish I think changing from tsc to npm run build makes more sense

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this currently exists in the main branch. i only removed the commands for convenience and then re-added them back 🤔

"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"lint:check": "npm run lint",
"lint:fix": "npm run lint --fix",
Expand Down
Loading
Loading