@datapos/datapos-development 0.3.404 → 0.3.406

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.
@@ -0,0 +1,10 @@
1
+ # Common git ignore configuration for PUBLISHED Data Positioning projects.
2
+ dependency-check-bin
3
+ dist-scripts
4
+ node_modules
5
+ rust/*/pkg
6
+ rust/*/target
7
+ rust/target
8
+ .env
9
+ .npmrc
10
+ **/.DS_Store
@@ -0,0 +1,11 @@
1
+ # Common git ignore configuration for UNPUBLISHED Data Positioning projects.
2
+ dependency-check-bin
3
+ dist
4
+ dist-scripts
5
+ node_modules
6
+ rust/*/pkg
7
+ rust/*/target
8
+ rust/target
9
+ .env
10
+ .npmrc # In case this project is published in the future.
11
+ **/.DS_Store
@@ -5520,25 +5520,25 @@ async function $r(t = []) {
5520
5520
  async function Ar(t) {
5521
5521
  console.log(1111, t);
5522
5522
  const e = te.dirname(ri(import.meta.url));
5523
- await Ut(e, "../", ".editorconfig"), await Ut(e, "../", ".gitattributes"), await Ut(e, "../", ".markdownlint.json"), await Ut(e, "../", "LICENSE"), t.isPublish && await Ut(e, "../resources/published/", ".gitignore");
5523
+ await Ut(e, "../", ".editorconfig"), await Ut(e, "../", ".gitattributes"), await Ut(e, "../", ".markdownlint.json"), await Ut(e, "../", "LICENSE"), t.isPublish && await Ut(e, "../", ".gitignore_published", ".gitignore2");
5524
5524
  }
5525
- async function Ut(t, e, s) {
5525
+ async function Ut(t, e, s, a) {
5526
5526
  console.log(2222, t, e, s);
5527
- const a = te.resolve(t, `${e}${s}`);
5528
- console.log(3333, a);
5529
- const o = await At(a), l = te.resolve(process.cwd(), s);
5530
- console.log(4444, l);
5531
- let d;
5527
+ const o = te.resolve(t, `${e}${s}`);
5528
+ console.log(3333, o);
5529
+ const l = await At(o), d = te.resolve(process.cwd(), a || s);
5530
+ console.log(4444, d);
5531
+ let v;
5532
5532
  try {
5533
- d = await At(l);
5534
- } catch (v) {
5535
- if (v.code !== "ENOENT") throw v;
5533
+ v = await At(d);
5534
+ } catch (g) {
5535
+ if (g.code !== "ENOENT") throw g;
5536
5536
  }
5537
- if (d === o) {
5537
+ if (v === l) {
5538
5538
  console.info(`ℹ️ File '${s}' is already up to date.`);
5539
5539
  return;
5540
5540
  }
5541
- await Gt(l, o), console.info(`ℹ️ File '${s}' synchronised.`);
5541
+ await Gt(d, l), console.info(`ℹ️ File '${s}' synchronised.`);
5542
5542
  }
5543
5543
  async function Gr(t) {
5544
5544
  try {