Skip to content

Commit 25c069b

Browse files
committed
Update build layer script
1 parent 0461344 commit 25c069b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build-layer.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -e
1414

1515
LAYER_NAME=canvas-nodejs
1616
LAYER_DESCRIPTION="AWS Lambda Layer with node-canvas and its dependencies packaged, provides a Cairo backed Mozilla Web Canvas API implementation with additional features."
17-
LAYER_VERSION=2.11.2
17+
LAYER_VERSION=2.11.3
1818
LAYER_AUTHOR="Charoite Lee"
1919

2020
DOT_CHAR="."
@@ -38,7 +38,6 @@ npm install canvas --build-from-source
3838
npm install fabric
3939
npm install konva
4040
npm install chart.js
41-
npm install @pixi/node
4241
npm install mocha --save-dev
4342
jq --arg LAYER_NAME "$LAYER_NAME" --arg LAYER_DESCRIPTION "$LAYER_DESCRIPTION" --arg LAYER_VERSION "$LAYER_VERSION" --arg LAYER_AUTHOR "$LAYER_AUTHOR" --arg SEMVER_VERSION "$SEMVER_VERSION" '.name = $LAYER_NAME | .description = $LAYER_DESCRIPTION | .version = $LAYER_VERSION | .license = "MIT" | .author = $LAYER_AUTHOR | .scripts.test = "mocha" | .overrides.semver = $SEMVER_VERSION ' package.json > package-tmp.json
4443
mv -f package-tmp.json package.json

0 commit comments

Comments
 (0)