Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit d908afb

Browse files
committed
Merge remote-tracking branch 'node-aws-lambda-graphql-sapling/master'
2 parents 344ff77 + c20f019 commit d908afb

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"bracketSpacing": true,
23
"printWidth": 120,
34
"singleQuote": true,
45
"trailingComma": "all"

package-lock.json

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

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "node-aws-lambda-graphql-example-todo",
44
"description": "",
55
"private": true,
6-
"license": "commercial",
6+
"license": "UNLICENSED",
77
"version": "0.0.0",
88
"homepage": "https://github.com/mdnorman/node-aws-lambda-graphql-example-todo/wiki/Home",
99
"repository": {
@@ -16,6 +16,7 @@
1616
"scripts": {
1717
"clean": "rm -rf dist && rm -rf out",
1818
"build": "tsc",
19+
"build:watch": "tsc --watch",
1920
"rebuild": "npm run clean && npm run build",
2021
"test": "jest",
2122
"posttest": "npm run lint",

serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins:
77

88
provider:
99
name: aws
10-
runtime: nodejs8.10
10+
runtime: nodejs12.x
1111
profile: serverless
1212
stage: test
1313
region: us-east-1

0 commit comments

Comments
 (0)