@makano/rew 1.1.2 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/ui +0 -0
- package/build.sh +6 -0
- package/cpp/ui.cpp +217 -0
- package/cpp/ui1.cpp +101 -0
- package/cpp/ui2.cpp +105 -0
- package/lib/rew/cli/cli.js +75 -3
- package/lib/rew/cli/utils.js +10 -9
- package/lib/rew/const/opt.js +2 -1
- package/lib/rew/functions/exec.js +27 -0
- package/lib/rew/functions/export.js +23 -5
- package/lib/rew/functions/fs.js +7 -2
- package/lib/rew/functions/import.js +28 -19
- package/lib/rew/functions/types.js +19 -3
- package/lib/rew/html/ui.js +12 -2
- package/lib/rew/modules/compiler.js +190 -1
- package/lib/rew/modules/context.js +41 -15
- package/lib/rew/modules/runtime.js +5 -1
- package/lib/rew/pkgs/modules/threads/worker.js +1 -1
- package/lib/rew/pkgs/modules/ui/classes.js +7 -1
- package/lib/rew/pkgs/threads.js +5 -1
- package/lib/rew/pkgs/ui.js +24 -24
- package/package.json +6 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@makano/rew",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.6",
|
4
4
|
"description": "A simple coffescript runtime",
|
5
5
|
"main": "lib/rew/main.js",
|
6
6
|
"directories": {
|
@@ -11,7 +11,9 @@
|
|
11
11
|
},
|
12
12
|
"files": [
|
13
13
|
"lib/",
|
14
|
+
"cpp/",
|
14
15
|
"bin/",
|
16
|
+
"build.sh",
|
15
17
|
"README.md"
|
16
18
|
],
|
17
19
|
"bin": {
|
@@ -25,6 +27,9 @@
|
|
25
27
|
"author": "makano",
|
26
28
|
"license": "ISC",
|
27
29
|
"dependencies": {
|
30
|
+
"@babel/core": "^7.24.6",
|
31
|
+
"@babel/preset-react": "^7.24.6",
|
32
|
+
"babel-plugin-jsx": "^1.2.0",
|
28
33
|
"chalk": "^5.3.0",
|
29
34
|
"chokidar": "^3.6.0",
|
30
35
|
"js-yaml": "^4.1.0",
|