@jsenv/core 25.4.4 → 25.4.5

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": "@jsenv/core",
3
- "version": "25.4.4",
3
+ "version": "25.4.5",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -61,8 +61,9 @@ const readJsenvCoreVersionFromPackageFile = async () => {
61
61
  "./package.json",
62
62
  jsenvCoreDirectoryUrl,
63
63
  )
64
- const jsenvCoreVersion = await readFile(jsenvCorePackageFileUrl, {
64
+ const jsenvCorePackage = await readFile(jsenvCorePackageFileUrl, {
65
65
  as: "json",
66
- }).version
67
- return jsenvCoreVersion
66
+ })
67
+ const version = jsenvCorePackage.version
68
+ return version
68
69
  }