@middy/warmup 2.5.4 → 3.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017-2021 Luciano Mammino, will Farrell and the [Middy team](https://github.com/middyjs/middy/graphs/contributors)
3
+ Copyright (c) 2017-2022 Luciano Mammino, will Farrell and the [Middy team](https://github.com/middyjs/middy/graphs/contributors)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -58,8 +58,8 @@ npm install --save @middy/warmup
58
58
  ## Sample usage
59
59
 
60
60
  ```javascript
61
- const middy = require('@middy/core')
62
- const warmup = require('@middy/warmup')
61
+ import middy from '@middy/core'
62
+ import warmup from '@middy/warmup'
63
63
 
64
64
  const isWarmingUp = (event) => event.isWarmingUp === true
65
65
 
@@ -84,7 +84,7 @@ Everyone is very welcome to contribute to this repository. Feel free to [raise i
84
84
 
85
85
  ## License
86
86
 
87
- Licensed under [MIT License](LICENSE). Copyright (c) 2017-2021 Luciano Mammino, will Farrell, and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
87
+ Licensed under [MIT License](LICENSE). Copyright (c) 2017-2022 Luciano Mammino, will Farrell, and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
88
88
 
89
89
  <a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy?ref=badge_large">
90
90
  <img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy.svg?type=large" alt="FOSSA Status" style="max-width:100%;">
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@middy/warmup",
3
- "version": "2.5.4",
3
+ "version": "3.0.0-alpha.0",
4
4
  "description": "Warmup (cold start mitigation) middleware for the middy framework",
5
- "type": "commonjs",
5
+ "type": "module",
6
6
  "engines": {
7
- "node": ">=12"
7
+ "node": ">=14"
8
8
  },
9
9
  "engineStrict": true,
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "main": "index.js",
13
+ "exports": "./index.js",
14
14
  "types": "index.d.ts",
15
15
  "files": [
16
16
  "index.d.ts"
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "homepage": "https://github.com/middyjs/middy#readme",
48
48
  "devDependencies": {
49
- "@middy/core": "^2.5.4"
49
+ "@middy/core": "^3.0.0-alpha.0"
50
50
  },
51
- "gitHead": "a4134a579c757a9fdfed3006877ba2c0ec8a2cfa"
51
+ "gitHead": "c533f62841c8a39d061d7b94f30ba178f002c8db"
52
52
  }
package/index.js DELETED
@@ -1,23 +0,0 @@
1
- "use strict";
2
-
3
- const defaults = {
4
- isWarmingUp: event => (event === null || event === void 0 ? void 0 : event.source) === 'serverless-plugin-warmup'
5
- };
6
-
7
- const warmupMiddleware = opt => {
8
- const options = { ...defaults,
9
- ...opt
10
- };
11
-
12
- const warmupMiddlewareBefore = request => {
13
- if (options.isWarmingUp(request.event)) {
14
- return 'warmup';
15
- }
16
- };
17
-
18
- return {
19
- before: warmupMiddlewareBefore
20
- };
21
- };
22
-
23
- module.exports = warmupMiddleware;