usf-cli 1.2.2 → 1.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "usf-cli",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "usf-cli helps uos stateless function developers with local running, boosting their development efficiency.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -6,6 +6,8 @@ import { createRequire } from "module";
6
6
 
7
7
  const require = createRequire(import.meta.url);
8
8
 
9
+ const MIN_NODE_VERSION_ESMODULES = '13.2.0';
10
+
9
11
  function getFunctionModulePath(codeLocation) {
10
12
  try {
11
13
  return require.resolve(codeLocation);