hightjs 0.2.47 → 0.2.49

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/dist/renderer.js CHANGED
@@ -88,7 +88,7 @@ function getJavaScriptFiles(req) {
88
88
  return a.localeCompare(b);
89
89
  });
90
90
  // @ts-ignore
91
- if (jsFiles.length > 1 && !process.hight.dev) {
91
+ if (jsFiles.length >= 1) {
92
92
  // Modo chunks sem manifesto
93
93
  return jsFiles
94
94
  .map(file => `<script src="/hweb-dist/${file}"></script>`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hightjs",
3
- "version": "0.2.47",
3
+ "version": "0.2.49",
4
4
  "description": "HightJS is a high-level framework for building web applications with ease and speed. It provides a robust set of tools and features to streamline development and enhance productivity.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/renderer.tsx CHANGED
@@ -106,7 +106,7 @@ function getJavaScriptFiles(req: GenericRequest): string {
106
106
  });
107
107
 
108
108
  // @ts-ignore
109
- if (jsFiles.length > 1 && !process.hight.dev) {
109
+ if (jsFiles.length >= 1) {
110
110
  // Modo chunks sem manifesto
111
111
  return jsFiles
112
112
  .map(file => `<script src="/hweb-dist/${file}"></script>`)