Skip to content

Commit

Permalink
Put pictures into assets folder to avoid getting bundled
Browse files Browse the repository at this point in the history
  • Loading branch information
daemonsy committed Jul 1, 2017
1 parent 50c81ae commit bb2b952
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[NYC Subway](http://alexa.amazon.com/spa/index.html#skills/dp/B01MR1N9YH) is an Alexa Custom Skill that gives you an update on subway statuses.

![](nyc-subway-skill.png)
![](assets/nyc-subway-skill.png)

This repository contains code for the skill's lambda handler.

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"dynamodb:download": "mkdir -p downloads && mkdir -p dynamodb_local && wget -N https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz -P ./downloads && tar -xvf ./downloads/dynamodb_local_latest.tar.gz -C ./dynamodb_local",
"dynamodb:start": "java -Djava.library.path=./dynamodb_local/DynamoDBLocal_lib -jar ./dynamodb_local/DynamoDBLocal.jar -sharedDb -inMemory",
"release": "rm -f subway.zip && yarn --production && zip -r subway.zip . -x '*.git*' -x 'tests/*' -x 'downloads/*' -x 'dynamodb_local/*'",
"release": "rm -f subway.zip && yarn --production && zip -r subway.zip . -x '*.git*' -x 'tests/*' -x 'downloads/* -x 'assets/*' -x 'dynamodb_local/*'",
"test": "NODE_ENV=test ava"
},
"ava": {
Expand Down

0 comments on commit bb2b952

Please sign in to comment.