@faasjs/func 3.0.0-canary.2 → 3.0.0-canary.4

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -11,6 +11,11 @@ FaasJS's function module.
11
11
  npm install @faasjs/func
12
12
  ```
13
13
 
14
+ ## Functions
15
+
16
+ - [useFunc](functions/useFunc.md)
17
+ - [usePlugin](functions/usePlugin.md)
18
+
14
19
  ## Classes
15
20
 
16
21
  - [Func](classes/Func.md)
@@ -29,8 +34,3 @@ npm install @faasjs/func
29
34
  - [Next](type-aliases/Next.md)
30
35
  - [Plugin](type-aliases/Plugin.md)
31
36
  - [UseifyPlugin](type-aliases/UseifyPlugin.md)
32
-
33
- ## Functions
34
-
35
- - [useFunc](functions/useFunc.md)
36
- - [usePlugin](functions/usePlugin.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/func",
3
- "version": "3.0.0-canary.2",
3
+ "version": "3.0.0-canary.4",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,8 +34,8 @@
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "@faasjs/deep_merge": "3.0.0-canary.2",
38
- "@faasjs/logger": "3.0.0-canary.2"
37
+ "@faasjs/deep_merge": "3.0.0-canary.4",
38
+ "@faasjs/logger": "3.0.0-canary.4"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=22.0.0",