@navita/core 0.0.9 → 0.0.10
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/evaluateAndProcess.js +1 -1
- package/evaluateAndProcess.mjs +1 -1
- package/package.json +2 -2
package/evaluateAndProcess.js
CHANGED
|
@@ -252,7 +252,7 @@ async function evaluateAndProcess({ type , filePath , source , engine , resolver
|
|
|
252
252
|
return compiledFn().then(({ dependencies , exports })=>{
|
|
253
253
|
if (type === 'entryPoint') {
|
|
254
254
|
return {
|
|
255
|
-
result: collectedResults[filePath],
|
|
255
|
+
result: collectedResults[filePath] || [],
|
|
256
256
|
dependencies
|
|
257
257
|
};
|
|
258
258
|
}
|
package/evaluateAndProcess.mjs
CHANGED
|
@@ -254,7 +254,7 @@ async function evaluateAndProcess({ type , filePath , source , engine , resolver
|
|
|
254
254
|
return compiledFn().then(({ dependencies , exports })=>{
|
|
255
255
|
if (type === 'entryPoint') {
|
|
256
256
|
return {
|
|
257
|
-
result: collectedResults[filePath],
|
|
257
|
+
result: collectedResults[filePath] || [],
|
|
258
258
|
dependencies
|
|
259
259
|
};
|
|
260
260
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navita/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Core package for Navita. Used for creating integrations.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"core",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@navita/types": "0.0.8",
|
|
37
37
|
"@navita/adapter": "0.0.9",
|
|
38
38
|
"@navita/swc": "0.0.9",
|
|
39
|
-
"@navita/engine": "0.0.
|
|
39
|
+
"@navita/engine": "0.0.10"
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"author": "Eagerpatch",
|