wirejs-scripts 3.0.3 → 3.0.4
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.
|
@@ -90,7 +90,7 @@ const Generated = {
|
|
|
90
90
|
|
|
91
91
|
try {
|
|
92
92
|
if (contentPath.endsWith('.js')) {
|
|
93
|
-
const module = await import(contentPath);
|
|
93
|
+
const module = await import(contentPath + '?' + new Date() + Math.random());
|
|
94
94
|
if (typeof module.generate === 'function') {
|
|
95
95
|
const doc = await module.generate(contentPath);
|
|
96
96
|
const doctype = doc.parentNode.doctype?.name || '';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wirejs-scripts",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Basic build and start commands for wirejs apps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"rimraf": "^6.0.1",
|
|
32
32
|
"style-loader": "^2.0.0",
|
|
33
33
|
"webpack": "^5.97.1",
|
|
34
|
-
"wirejs-dom": "^1.0.
|
|
34
|
+
"wirejs-dom": "^1.0.35"
|
|
35
35
|
}
|
|
36
36
|
}
|