@datapos/datapos-development 0.3.81 → 0.3.83

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.
@@ -2211,9 +2211,7 @@ async function hi(n) {
2211
2211
  const s = await h.readdir(r, { withFileTypes: !0 });
2212
2212
  for (const c of s) {
2213
2213
  const u = `${r}/${c.name}`, d = i ? `${i}/${c.name}` : c.name;
2214
- if (c.isDirectory())
2215
- await o(u, d);
2216
- else {
2214
+ if (!c.isDirectory()) {
2217
2215
  const l = `${n}/${e}/${d}`.replace(/\\/g, "/"), p = c.name.endsWith(".js") ? "application/javascript" : c.name.endsWith(".css") ? "text/css" : "application/octet-stream";
2218
2216
  console.info(`⚙️ Uploading '${d}' → '${l}'...`);
2219
2217
  const { stderr: m } = await N(`wrangler r2 object put "${l}" --file="${u}" --content-type ${p} --jurisdiction=eu --remote`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.81",
3
+ "version": "0.3.83",
4
4
  "description": "A TypeScript library of utilities for managing the Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",