cedro 0.1.21 → 0.1.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cedro",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "type": "module",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.4.4",
@@ -69,19 +69,20 @@ export function createApplication(content: any): Application {
69
69
  const timestamp = new Date().getTime();
70
70
  const isProduction = process.env.NODE_ENV === "production";
71
71
 
72
- //DEVELOPMENT
73
72
  /*
73
+ //DEVELOPMENT
74
+
74
75
  const pathDev = ".." + url + "?ts=" + timestamp;
75
76
 
76
77
  const pathProduction = `../../assets${decode(
77
78
  ietmRoute.getAttribute("href")
78
- )}/index.js?ts=${timestamp}`;*/
79
+ )}/index.js?ts=${timestamp}`;
79
80
 
80
81
  //FIN DEVELOPMENT
81
-
82
+ */
82
83
  //PUBLISH
83
84
 
84
- const pathDev = url + "index.tsx" + "?ts=" + timestamp;
85
+ const pathDev = "../../../../src" + url + "?ts=" + timestamp;
85
86
 
86
87
  const pathProduction = `/assets${decode(
87
88
  ietmRoute.getAttribute("href")