@athenna/view
Advanced tools
Comparing version 4.1.0 to 4.2.0
{ | ||
"name": "@athenna/view", | ||
"version": "4.1.0", | ||
"version": "4.2.0", | ||
"description": "The Athenna template engine. Built on top of Edge.", | ||
@@ -53,6 +53,6 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@athenna/common": "^4.4.0", | ||
"@athenna/config": "^4.3.0", | ||
"@athenna/ioc": "^4.1.0", | ||
"@athenna/test": "^4.3.0", | ||
"@athenna/common": "^4.10.1", | ||
"@athenna/config": "^4.4.0", | ||
"@athenna/ioc": "^4.2.0", | ||
"@athenna/test": "^4.5.0", | ||
"@typescript-eslint/eslint-plugin": "^5.56.0", | ||
@@ -113,3 +113,3 @@ "@typescript-eslint/parser": "^5.56.0", | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
@@ -116,0 +116,0 @@ "endOfLine": "lf", |
@@ -16,5 +16,5 @@ /** | ||
message: `The component ${name} already exists.`, | ||
help: `This exception is thrown when trying to create a component with a name that is already is use, in this case "${name}". Try to create your component with a different name or remove the other component first using the "View.removeComponent('${name}')" method. Also, "View.createTemplate('${name}', 'your-component-value')" will automatically remove the other component for you.`, | ||
help: `This exception is thrown when trying to create a component with a name that is already is use, in this case "${name}". Try to create your component with a different name or remove the other component first using the "View.removeComponent('${name}')" method. Also, "View.createTemplate('${name}', 'your-component-value')" will automatically remove the other component for you.` | ||
}); | ||
} | ||
} |
@@ -16,5 +16,5 @@ /** | ||
message: `The component ${name} cannot be registered with "null" or "undefined" value.`, | ||
help: `This exception is thrown when trying to create a component with a "null" or "undefined" value. Try to set at least an empty string when using the "View.createComponent('${name}', '')" method.`, | ||
help: `This exception is thrown when trying to create a component with a "null" or "undefined" value. Try to set at least an empty string when using the "View.createComponent('${name}', '')" method.` | ||
}); | ||
} | ||
} |
@@ -16,5 +16,5 @@ /** | ||
message: `The view or component ${name} cannot be found.`, | ||
help: `This exception is thrown when trying to render a view or a component that has not been registered. Try to create your template or your disk it using the "View.createTemplate('${name}', 'your-template-content')", or "View.createViewDisk('${name}', 'your-view-disk-path')" methods.`, | ||
help: `This exception is thrown when trying to render a view or a component that has not been registered. Try to create your template or your disk using the "View.createTemplate('${name}', 'your-template-content')", or "View.createViewDisk('${name}', 'your-view-disk-path')" methods.` | ||
}); | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29514