@rip-lang/ui 0.3.8 → 0.3.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/README.md +49 -0
- package/dist/rip-ui.min.js +514 -0
- package/dist/rip-ui.min.js.br +0 -0
- package/package.json +3 -4
- package/serve.rip +1 -5
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rip-lang/ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Zero-build reactive web framework — rip.js + ui.rip + launch(url)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "ui.rip",
|
|
@@ -31,12 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"author": "Steve Shreeve <steve.shreeve@gmail.com>",
|
|
33
33
|
"license": "MIT",
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"rip-lang": "^3.9.1"
|
|
36
|
-
},
|
|
37
34
|
"files": [
|
|
38
35
|
"ui.rip",
|
|
39
36
|
"serve.rip",
|
|
37
|
+
"dist/rip-ui.min.js",
|
|
38
|
+
"dist/rip-ui.min.js.br",
|
|
40
39
|
"README.md"
|
|
41
40
|
],
|
|
42
41
|
"peerDependencies": {
|
package/serve.rip
CHANGED
|
@@ -33,11 +33,7 @@ export ripUI = (opts = {}) ->
|
|
|
33
33
|
uiDir = import.meta.dir
|
|
34
34
|
|
|
35
35
|
# Resolve rip-ui.min.js (compiler + UI framework bundled)
|
|
36
|
-
bundlePath =
|
|
37
|
-
try
|
|
38
|
-
bundlePath = Bun.fileURLToPath(import.meta.resolve('rip-lang/docs/dist/rip-ui.min.js'))
|
|
39
|
-
catch
|
|
40
|
-
bundlePath = "#{uiDir}/../../docs/dist/rip-ui.min.js"
|
|
36
|
+
bundlePath = "#{uiDir}/dist/rip-ui.min.js"
|
|
41
37
|
|
|
42
38
|
# ----------------------------------------------------------------------------
|
|
43
39
|
# Route: /rip/* — framework files, registered once
|