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.
Files changed (2) hide show
  1. package/index.js +9 -11
  2. 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
- var errors = lintComponent(component);
101
- if (errors.length > 0) {
102
- errors.map(function (error) {
103
- errorDisplay(component.getName(), error);
104
- });
105
- }
106
- else {
107
- registerTagLib(component);
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "render-core",
3
- "version": "1.4.24",
3
+ "version": "1.4.25",
4
4
  "description": "The extendable javascript web framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",