cedro 0.1.18 → 0.1.20

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.18",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.4.4",
@@ -77,13 +77,17 @@ export function createApplication(content: any): Application {
77
77
  ietmRoute.getAttribute("href")
78
78
  )}/index.js?ts=${timestamp}`;*/
79
79
 
80
- //PRODUCTION
80
+ //FIN DEVELOPMENT
81
81
 
82
- const pathDev = url + "?ts=" + timestamp;
82
+ //PUBLISH
83
+
84
+ const pathDev = url + "/index.tsx" + "?ts=" + timestamp;
83
85
 
84
86
  const pathProduction = `/assets${decode(
85
87
  ietmRoute.getAttribute("href")
86
- )}/index.js?ts=${timestamp}`;
88
+ )}index.js?ts=${timestamp}`;
89
+
90
+ //FIN PUBLISH
87
91
 
88
92
  const path = isProduction ? pathProduction : pathDev;
89
93