@netlify/functions-utils 5.2.0 → 5.2.2

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/lib/main.js +1 -1
  2. package/package.json +5 -5
package/lib/main.js CHANGED
@@ -3,7 +3,7 @@ import { basename, dirname } from 'path';
3
3
  import { listFunctions, listFunctionsFiles } from '@netlify/zip-it-and-ship-it';
4
4
  import cpy from 'cpy';
5
5
  import { pathExists } from 'path-exists';
6
- // Add a Netlify Function file to the `functions` directory so it is processed
6
+ // Add a Netlify Function file to the `functions` directory, so it is processed
7
7
  // by `@netlify/plugin-functions-core`
8
8
  export const add = async function (src, dist, { fail = defaultFail } = {}) {
9
9
  if (src === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/functions-utils",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Utility for adding Functions files in Netlify Build",
5
5
  "type": "module",
6
6
  "exports": "./lib/main.js",
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "license": "MIT",
52
52
  "dependencies": {
53
- "@netlify/zip-it-and-ship-it": "^8.9.0",
53
+ "@netlify/zip-it-and-ship-it": "^8.10.0",
54
54
  "cpy": "^8.1.0",
55
55
  "path-exists": "^5.0.0"
56
56
  },
@@ -58,11 +58,11 @@
58
58
  "@types/node": "^18.14.2",
59
59
  "sort-on": "^5.0.0",
60
60
  "tmp-promise": "^3.0.0",
61
- "typescript": "^4.8.4",
62
- "vitest": "^0.24.1"
61
+ "typescript": "^5.0.0",
62
+ "vitest": "^0.30.1"
63
63
  },
64
64
  "engines": {
65
65
  "node": "^14.16.0 || >=16.0.0"
66
66
  },
67
- "gitHead": "25ec7850b04c37427c12c6e4753281f3d429a72a"
67
+ "gitHead": "2d5c91400f4665f2daeb0fd7f5d1ddcd1cfbb526"
68
68
  }