efront 4.0.41 → 4.0.45
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/apps/pivot/log/count.js +2 -2
- package/coms/basic/Table.js +4 -2
- package/coms/basic/analyse_test.js +2 -1
- package/coms/basic/arrayEqual.js +8 -0
- package/coms/{zimoli → basic}/deepEqual.js +0 -17
- package/coms/basic/isSame.js +2 -1
- package/coms/basic/refilm_decode.js +3 -2
- package/coms/basic/refilm_decode_test.js +2 -0
- package/coms/basic/shallowEqual.js +18 -0
- package/coms/basic/str2array.js +5 -0
- package/coms/compile/Program.js +11 -7
- package/coms/compile/common.js +6 -7
- package/coms/compile/formatcode.js +7 -2
- package/coms/compile/scanner2_test.js +13 -1
- package/coms/compile/unstruct_test.js +4 -2
- package/coms/pivot/pedit.js +15 -6
- package/coms/reptile/detectWithExtension.js +36 -0
- package/coms/zimoli/data.js +1 -1
- package/coms/zimoli/getChanges.js +2 -2
- package/coms/zimoli/render.js +2 -2
- package/coms/zimoli/select.js +2 -2
- package/coms/zimoli/table.html +2 -2
- package/coms/zimoli/table.js +1 -1
- package/coms/zimoli/table.less +8 -0
- package/package.json +1 -1
- package/public/efront.js +1 -1
- package/readme-en.md +10 -4
- package/readme.md +7 -4
- /package/coms/{zimoli → basic}/deepEqual_test.js +0 -0
package/readme-en.md
CHANGED
|
@@ -30,6 +30,13 @@ Global installation of efront from NPM
|
|
|
30
30
|
npm install -g efront
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
```
|
|
34
|
+
If you just want to test limited efront functions via [deno](https://deno.land/), you may fire your code as bellow:
|
|
35
|
+
```
|
|
36
|
+
deno run --allow-all http://efront.cc/ help
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
|
|
33
40
|
## 2. View Help System
|
|
34
41
|
|
|
35
42
|
The command line help commands are as follows
|
|
@@ -157,12 +164,11 @@ You can also click on [github](https://github.com/yunxu1019/efront/issues). The
|
|
|
157
164
|
|
|
158
165
|
# Related Links
|
|
159
166
|
|
|
160
|
-
[efront Online Documents](
|
|
167
|
+
[efront Online Documents](https://efront.cc/docs/)
|
|
161
168
|
|
|
162
169
|
[efront Compatibility Description](coms/basic_/readme-en.md)
|
|
163
170
|
[Version Introduction](docs/version-desc.md)
|
|
164
171
|
[Compared to the front-end framework](docs/compare-en.md)
|
|
165
172
|
|
|
166
|
-
[
|
|
167
|
-
|
|
168
|
-
[白前看图](https://efront.cc/baiplay)
|
|
173
|
+
[白前看图](https://efront.cc/baiplay)
|
|
174
|
+
[酷酷千百易云音乐](https://efront.cc/kugou/)
|
package/readme.md
CHANGED
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
```bat
|
|
30
30
|
npm install -g efront
|
|
31
31
|
```
|
|
32
|
+
如果要在[deno](https://deno.land/)上运行`efront`,您可以使用如下命令
|
|
33
|
+
```
|
|
34
|
+
deno run --allow-all http://efront.cc/ help
|
|
35
|
+
```
|
|
32
36
|
|
|
33
37
|
## 2. 查看帮助系统
|
|
34
38
|
|
|
@@ -156,12 +160,11 @@ efront 默认读取当前路径下的`_envs/`和用户目录的`.efront/_envs/`
|
|
|
156
160
|
* 从 efront3.29 开始`.xht`文件将被识别为组件文件,如果文件内未提供入口,入口函数将由 efront 自动生成并填充
|
|
157
161
|
# 相关链接
|
|
158
162
|
|
|
159
|
-
[efront 在线文档](
|
|
163
|
+
[efront 在线文档](https://efront.cc/docs/)
|
|
160
164
|
|
|
161
165
|
[efront 兼容性说明](coms/basic_/readme.md)
|
|
162
166
|
[版本简介](docs/%E7%89%88%E6%9C%AC%E8%AF%B4%E6%98%8E.md)
|
|
163
167
|
[与前端框架对比](docs/compare.md)
|
|
164
168
|
|
|
165
|
-
[
|
|
166
|
-
[
|
|
167
|
-
[白前看图](https://efront.cc/baiplay)
|
|
169
|
+
[白前看图](https://efront.cc/baiplay)
|
|
170
|
+
[酷酷千百易云音乐](https://efront.cc/kugou/)
|
|
File without changes
|