Skip to content

Commit d59f2d0

Browse files
committed
update cloudformation cli dependencies
1 parent a780582 commit d59f2d0

File tree

4 files changed

+91
-84
lines changed

4 files changed

+91
-84
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
*Issue #, if available:*
22

33
*Description of changes:*
4-

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install Dependencies Node.js
3939
id: install_nodejs
4040
run: |
41-
npm ci --optional --timing && npm run build
41+
npm ci --optional && npm run build
4242
- name: Run Unit Tests
4343
id: unit_testing
4444
run: |
@@ -68,9 +68,9 @@ jobs:
6868
ls -la
6969
mkdir ./dist
7070
cp "$RPDK_PATH" ./dist
71-
npm install --timing "./dist/$RPDK_PACKAGE"
71+
npm install "./dist/$RPDK_PACKAGE"
7272
cfn generate -vv && cfn validate -vv
73-
npm install --optional --timing
73+
npm install --optional
7474
sam build --debug --build-dir ./build TypeFunction
7575
sam build --debug --build-dir ./build TestEntrypoint
7676
sam local invoke -t build/template.yaml --debug --event sam-tests/create.json --log-file sam.log TestEntrypoint

Pipfile.lock

Lines changed: 87 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/rpdk/typescript/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def _remove_build_artifacts(deps_path):
205205
@staticmethod
206206
def _make_build_command(base_path, build_command=None):
207207
command = (
208-
"npm install --optional --timing "
208+
"npm install --optional "
209209
+ f"&& sam build --debug --build-dir {base_path}/build"
210210
)
211211
if build_command is not None:

0 commit comments

Comments
 (0)