render-core 1.4.24 → 1.4.25
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/index.js +9 -11
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -21,8 +21,6 @@ import { AbstractComponent } from "./tension/prototype/AbstractComponent";
|
|
|
21
21
|
import { set_context_controller } from "./system/recorder/table0/system_func_0";
|
|
22
22
|
import { PrefaceAction } from "./tension/prototype/PrefaceAction";
|
|
23
23
|
import { SystemInitPlugin } from "./tension/SystemInitPlugin";
|
|
24
|
-
import { lintComponent } from "./verify/directive-linter";
|
|
25
|
-
import { errorDisplay } from "./system/output/errorUtility";
|
|
26
24
|
/**
|
|
27
25
|
* This class is used to prototype the properties type
|
|
28
26
|
*/
|
|
@@ -97,15 +95,15 @@ var RenderJS = /** @class */ (function () {
|
|
|
97
95
|
* @param component
|
|
98
96
|
*/
|
|
99
97
|
RenderJS.prototype.add_tag = function (component) {
|
|
100
|
-
|
|
101
|
-
if (errors.length > 0) {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
98
|
+
// let errors:LintError[] = lintComponent(component);
|
|
99
|
+
// if (errors.length > 0) {
|
|
100
|
+
// errors.map(error => {
|
|
101
|
+
// errorDisplay(component.getName(), error);
|
|
102
|
+
// })
|
|
103
|
+
// }else {
|
|
104
|
+
// registerTagLib(component);
|
|
105
|
+
// }
|
|
106
|
+
registerTagLib(component);
|
|
109
107
|
};
|
|
110
108
|
/**
|
|
111
109
|
* This func is used to work under the route mode
|