unrun 0.2.27 → 0.2.29
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/README.md +7 -4
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# unrun
|
|
2
2
|
|
|
3
3
|
[![Open on npmx][npmx-version-src]][npmx-version-href]
|
|
4
|
-
[![
|
|
4
|
+
[![Open on npmx][npmx-downloads-src]][npmx-downloads-href]
|
|
5
|
+
[![Open on npmx][npmx-vulnerabilities-src]][npmx-vulnerabilities-href]
|
|
5
6
|
[![Unit Test][unit-test-src]][unit-test-href]
|
|
6
7
|
|
|
7
8
|
unrun is a tool that enables running and loading any module at runtime (TypeScript, ESM, CJS, JSX, etc.) by bundling it with [Rolldown](https://rolldown.rs/).
|
|
@@ -54,9 +55,11 @@ const { module } = unrunSync({
|
|
|
54
55
|
|
|
55
56
|
<!-- Badges -->
|
|
56
57
|
|
|
57
|
-
[npmx-version-src]: https://npmx.dev/api/registry/badge/unrun
|
|
58
|
+
[npmx-version-src]: https://npmx.dev/api/registry/badge/version/unrun
|
|
58
59
|
[npmx-version-href]: https://npmx.dev/unrun
|
|
59
|
-
[
|
|
60
|
-
[
|
|
60
|
+
[npmx-downloads-src]: https://npmx.dev/api/registry/badge/downloads-month/unrun
|
|
61
|
+
[npmx-downloads-href]: https://npmx.dev/unrun
|
|
62
|
+
[npmx-vulnerabilities-src]: https://npmx.dev/api/registry/badge/vulnerabilities/unrun
|
|
63
|
+
[npmx-vulnerabilities-href]: https://npmx.dev/unrun
|
|
61
64
|
[unit-test-src]: https://github.com/gugustinette/unrun/actions/workflows/unit-test.yml/badge.svg
|
|
62
65
|
[unit-test-href]: https://github.com/gugustinette/unrun/actions/workflows/unit-test.yml
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unrun",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.29",
|
|
5
5
|
"description": "A tool to load and execute any JavaScript or TypeScript code at runtime.",
|
|
6
6
|
"author": "Augustin Mercier <gugustinette@proton.me>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -42,35 +42,35 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"rolldown": "1.0.0-rc.
|
|
45
|
+
"rolldown": "1.0.0-rc.6"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@sxzz/eslint-config": "^7.
|
|
48
|
+
"@sxzz/eslint-config": "^7.7.2",
|
|
49
49
|
"@sxzz/prettier-config": "^2.3.1",
|
|
50
|
-
"@types/node": "^25.2.
|
|
50
|
+
"@types/node": "^25.2.3",
|
|
51
51
|
"@typescript/native-preview": "7.0.0-dev.20260204.1",
|
|
52
52
|
"@vitest/browser": "4.0.18",
|
|
53
53
|
"@vitest/browser-playwright": "4.0.18",
|
|
54
54
|
"@webcontainer/api": "^1.6.1",
|
|
55
55
|
"acorn": "^8.15.0",
|
|
56
|
-
"bumpp": "^10.4.
|
|
56
|
+
"bumpp": "^10.4.1",
|
|
57
57
|
"bundle-require": "^5.1.0",
|
|
58
|
-
"config": "^4.
|
|
58
|
+
"config": "^4.3.0",
|
|
59
59
|
"consola": "^3.4.2",
|
|
60
60
|
"defu": "^6.1.4",
|
|
61
61
|
"destr": "^2.0.5",
|
|
62
|
-
"esbuild": "^0.27.
|
|
62
|
+
"esbuild": "^0.27.3",
|
|
63
63
|
"eslint": "^9.39.2",
|
|
64
64
|
"estree-walker": "^3.0.3",
|
|
65
65
|
"etag": "^1.8.1",
|
|
66
66
|
"fast-glob": "^3.3.3",
|
|
67
|
-
"giget": "^3.1.
|
|
67
|
+
"giget": "^3.1.2",
|
|
68
68
|
"is-installed-globally": "^1.0.0",
|
|
69
69
|
"jiti": "^2.6.1",
|
|
70
70
|
"mime": "^4.1.0",
|
|
71
71
|
"moment-timezone": "^0.6.0",
|
|
72
72
|
"nano-jsx": "^0.2.1",
|
|
73
|
-
"playwright": "^1.58.
|
|
73
|
+
"playwright": "^1.58.2",
|
|
74
74
|
"preact": "^10.28.3",
|
|
75
75
|
"preact-render-to-string": "^6.6.5",
|
|
76
76
|
"prettier": "^3.8.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"tsdown": "0.20.1",
|
|
84
84
|
"tsx": "^4.21.0",
|
|
85
85
|
"typedoc": "^0.28.16",
|
|
86
|
-
"typedoc-plugin-markdown": "^4.
|
|
86
|
+
"typedoc-plugin-markdown": "^4.10.0",
|
|
87
87
|
"typedoc-vitepress-theme": "^1.1.2",
|
|
88
88
|
"typescript": "^5.9.3",
|
|
89
89
|
"unconfig": "^7.4.2",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"vitepress": "2.0.0-alpha.12",
|
|
93
93
|
"vitepress-plugin-group-icons": "^1.7.1",
|
|
94
94
|
"vitest": "4.0.18",
|
|
95
|
-
"vue": "^3.5.
|
|
95
|
+
"vue": "^3.5.28",
|
|
96
96
|
"vue-tsc": "^3.2.4",
|
|
97
97
|
"zod": "^4.3.6"
|
|
98
98
|
},
|