@microlight/core 0.9.6 → 0.9.8
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.
|
@@ -23,6 +23,7 @@ export async function executeTask({
|
|
|
23
23
|
return run.toJSON();
|
|
24
24
|
},
|
|
25
25
|
startRun: ['createRun', async function (results) {
|
|
26
|
+
results.createRun.inputs = Object.fromEntries(formData?.entries()); // This is a file object and not being propelry serialized by run.toJSON()
|
|
26
27
|
process.nextTick(() => executeRun(results.createRun));
|
|
27
28
|
return;
|
|
28
29
|
}]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microlight/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"prepare:server": "microlight-core prepare server",
|
|
17
17
|
"prepare2": "microlight-core prepare all",
|
|
18
18
|
"start": "next start",
|
|
19
|
-
"lint": "next lint"
|
|
19
|
+
"lint": "next lint",
|
|
20
|
+
"test": "jest"
|
|
20
21
|
},
|
|
21
22
|
"files": [
|
|
22
23
|
"dist",
|
|
@@ -29,6 +30,8 @@
|
|
|
29
30
|
"@babel/generator": "^7.26.10",
|
|
30
31
|
"@babel/parser": "^7.26.10",
|
|
31
32
|
"@mui/joy": "^5.0.0-beta.51",
|
|
33
|
+
"@testing-library/jest-dom": "^6.6.4",
|
|
34
|
+
"@testing-library/react": "^16.3.0",
|
|
32
35
|
"async": "^3.2.6",
|
|
33
36
|
"commander": "^13.1.0",
|
|
34
37
|
"cronstrue": "^2.53.0",
|
|
@@ -46,5 +49,12 @@
|
|
|
46
49
|
"sequelize": "^6.37.5",
|
|
47
50
|
"sqlite3": "^5.1.7",
|
|
48
51
|
"switchless": "0.19.1"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@babel/preset-env": "^7.28.0",
|
|
55
|
+
"@babel/preset-react": "^7.27.1",
|
|
56
|
+
"babel-plugin-module-resolver": "^5.0.2",
|
|
57
|
+
"jest": "^30.0.4",
|
|
58
|
+
"jest-environment-jsdom": "^30.0.5"
|
|
49
59
|
}
|
|
50
60
|
}
|