File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 1.7.0 (July 11, 2021)
4
4
5
- - Adds ability to add custom request headers ([ #6 ] ( https://github.com/dealmore /sammy/pull/6 ) )
5
+ - Adds ability to add custom request headers ([ #6 ] ( https://github.com/milliHQ /sammy/pull/6 ) )
6
6
7
7
## 1.6.1 (May 03, 2021)
8
8
9
- - Return SAM endpoint on start ([ #5 ] ( https://github.com/dealmore /sammy/pull/5 ) )
9
+ - Return SAM endpoint on start ([ #5 ] ( https://github.com/milliHQ /sammy/pull/5 ) )
10
10
11
11
## 1.6.0 (April 09, 2021)
12
12
13
- - Allows multiple routes per Lambda ([ #3 ] ( https://github.com/dealmore /sammy/issues/3 ) [ #4 ] ( https://github.com/dealmore /sammy/pull/4 ) )
13
+ - Allows multiple routes per Lambda ([ #3 ] ( https://github.com/milliHQ /sammy/issues/3 ) [ #4 ] ( https://github.com/milliHQ /sammy/pull/4 ) )
14
14
15
15
## 1.5.0 (March 14, 2021)
16
16
17
- - Add support for passing all supported args to SAM CLI ([ #2 ] ( https://github.com/dealmore /sammy/pull/2 ) )
17
+ - Add support for passing all supported args to SAM CLI ([ #2 ] ( https://github.com/milliHQ /sammy/pull/2 ) )
18
18
19
19
## 1.4.0 (March 13, 2021)
20
20
21
- - Add ` --warm-containers ` option to SAMLocalOptions ([ #1 ] ( https://github.com/dealmore /sammy/pull/1 ) )
21
+ - Add ` --warm-containers ` option to SAMLocalOptions ([ #1 ] ( https://github.com/milliHQ /sammy/pull/1 ) )
Original file line number Diff line number Diff line change 186
186
same "printed page" as the copyright notice for easier
187
187
identification within third-party archives.
188
188
189
- Copyright 2021 Felix Haus (DealMore )
189
+ Copyright 2021 Felix Haus (milliVolt infrastructure )
190
190
191
191
Licensed under the Apache License, Version 2.0 (the "License");
192
192
you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ A Node.js wrapper for [AWS SAM CLI](https://aws.amazon.com/serverless/sam/) for
5
5
## Usage
6
6
7
7
``` sh
8
- npm i -D @dealmore /sammy # npm
9
- yarn add -D @dealmore /sammy # or yarn
8
+ npm i -D @millihq /sammy # npm
9
+ yarn add -D @millihq /sammy # or yarn
10
10
```
11
11
12
12
Assuming you have a Lambda function with the following content:
@@ -34,7 +34,7 @@ You can now start the Lambda function locally and access it through an API-Endpo
34
34
``` ts
35
35
import * as path from ' path' ;
36
36
37
- import { generateAPISAM , APISAMGenerator } from ' @dealmore /sammy' ;
37
+ import { generateAPISAM , APISAMGenerator } from ' @millihq /sammy' ;
38
38
39
39
const lambdaSAM = await generateAPISAM ({
40
40
lambdas: {
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @dealmore /sammy" ,
2
+ "name" : " @millihq /sammy" ,
3
3
"version" : " 1.7.0" ,
4
4
"main" : " dist/index.js" ,
5
5
"license" : " Apache-2.0" ,
6
6
"repository" : {
7
7
"type" : " git" ,
8
- "url" : " https://github.com/dealmore /sammy.git"
8
+ "url" : " https://github.com/milliHQ /sammy.git"
9
9
},
10
10
"scripts" : {
11
11
"build" : " tsc --project tsconfig.build.json" ,
You can’t perform that action at this time.
0 commit comments