Skip to content

Commit 363ce3b

Browse files
committed
dealmore -> milliVolt
1 parent 76e9c7e commit 363ce3b

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
## 1.7.0 (July 11, 2021)
44

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))
66

77
## 1.6.1 (May 03, 2021)
88

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))
1010

1111
## 1.6.0 (April 09, 2021)
1212

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))
1414

1515
## 1.5.0 (March 14, 2021)
1616

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))
1818

1919
## 1.4.0 (March 13, 2021)
2020

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))

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2021 Felix Haus (DealMore)
189+
Copyright 2021 Felix Haus (milliVolt infrastructure)
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ A Node.js wrapper for [AWS SAM CLI](https://aws.amazon.com/serverless/sam/) for
55
## Usage
66

77
```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
1010
```
1111

1212
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
3434
```ts
3535
import * as path from 'path';
3636

37-
import { generateAPISAM, APISAMGenerator } from '@dealmore/sammy';
37+
import { generateAPISAM, APISAMGenerator } from '@millihq/sammy';
3838

3939
const lambdaSAM = await generateAPISAM({
4040
lambdas: {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "@dealmore/sammy",
2+
"name": "@millihq/sammy",
33
"version": "1.7.0",
44
"main": "dist/index.js",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/dealmore/sammy.git"
8+
"url": "https://github.com/milliHQ/sammy.git"
99
},
1010
"scripts": {
1111
"build": "tsc --project tsconfig.build.json",

0 commit comments

Comments
 (0)