saloe 0.0.40 → 0.0.41

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.
@@ -122,6 +122,7 @@ const listener = ({
122
122
  scriptNames == null ? void 0 : scriptNames.forEach((scriptName) => acc == null ? void 0 : acc.set(scriptName, 1));
123
123
  return acc;
124
124
  }, /* @__PURE__ */ new Map())) == null ? void 0 : _a.keys()];
125
+ console.log("--- uniqueScriptNames =", uniqueScriptNames);
125
126
  uniqueScriptNames == null ? void 0 : uniqueScriptNames.forEach(async (scriptName) => {
126
127
  const observedSrcElements = document.querySelectorAll(`[on-observe*="${scriptName}"]`);
127
128
  const script = await importScriptDynamically({ path: `/${scriptName == null ? void 0 : scriptName.trim()}.js` });
@@ -120,6 +120,7 @@ const listener = ({
120
120
  scriptNames == null ? void 0 : scriptNames.forEach((scriptName) => acc == null ? void 0 : acc.set(scriptName, 1));
121
121
  return acc;
122
122
  }, /* @__PURE__ */ new Map())) == null ? void 0 : _a.keys()];
123
+ console.log("--- uniqueScriptNames =", uniqueScriptNames);
123
124
  uniqueScriptNames == null ? void 0 : uniqueScriptNames.forEach(async (scriptName) => {
124
125
  const observedSrcElements = document.querySelectorAll(`[on-observe*="${scriptName}"]`);
125
126
  const script = await importScriptDynamically({ path: `/${scriptName == null ? void 0 : scriptName.trim()}.js` });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saloe",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "description": "Tools for making web development easy and efficient",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/listener.js CHANGED
@@ -181,6 +181,8 @@ const listener = ({
181
181
  return acc
182
182
  }, new Map())?.keys()]
183
183
 
184
+ console.log('--- uniqueScriptNames =', uniqueScriptNames)
185
+
184
186
  uniqueScriptNames?.forEach(async (scriptName) => {
185
187
  const observedSrcElements = document.querySelectorAll(`[on-observe*="${scriptName}"]`)
186
188