cubing 0.62.1 → 0.62.2

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.
@@ -1,14 +1,13 @@
1
1
  #!/usr/bin/env -S node --
2
2
 
3
3
  // src/metadata/packageVersion.ts
4
- import "path-class";
5
4
  var packageVersion = (
6
5
  // biome-ignore lint/suspicious/noTsIgnore: This comment is stil present in the compiled file, where an error is *not* expected.
7
6
  /** @ts-ignore Populated by `esbuild` at compile time. */
8
- "0.62.1"
7
+ "0.62.2"
9
8
  );
10
9
 
11
10
  export {
12
11
  packageVersion
13
12
  };
14
- //# sourceMappingURL=chunk-7HTSOKX4.js.map
13
+ //# sourceMappingURL=chunk-WFE2REKW.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/metadata/packageVersion.ts"],
4
+ "sourcesContent": ["export const packageVersion: string =\n // biome-ignore lint/suspicious/noTsIgnore: This comment is stil present in the compiled file, where an error is *not* expected.\n /** @ts-ignore Populated by `esbuild` at compile time. */\n globalThis.PACKAGE_VERSION ??\n // We don't want to pull in the dynamic code into the import graph, so we use\n // dynamic import here. This entire fallback expression should get compiled\n // out by `esbuild`.\n (await import(\"./packageVersionDynamic\")).version;\n"],
5
+ "mappings": ";;;AAAO,IAAM;AAAA;AAAA;AAAA,EAGX;AAAA;",
6
+ "names": []
7
+ }
package/dist/bin/order.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env -S node --
2
2
  import {
3
3
  packageVersion
4
- } from "./chunks/chunk-7HTSOKX4.js";
4
+ } from "./chunks/chunk-WFE2REKW.js";
5
5
 
6
6
  // src/bin/order.ts
7
7
  import { basename } from "node:path";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env -S node --
2
2
  import {
3
3
  packageVersion
4
- } from "./chunks/chunk-7HTSOKX4.js";
4
+ } from "./chunks/chunk-WFE2REKW.js";
5
5
 
6
6
  // src/bin/puzzle-geometry-bin.ts
7
7
  import { basename } from "node:path";
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env -S node --
2
2
  import {
3
3
  packageVersion
4
- } from "./chunks/chunk-7HTSOKX4.js";
4
+ } from "./chunks/chunk-WFE2REKW.js";
5
5
 
6
6
  // src/bin/scramble.ts
7
7
  import { basename } from "node:path";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cubing",
3
- "version": "0.62.1",
3
+ "version": "0.62.2",
4
4
  "description": "A collection of JavaScript cubing libraries.",
5
5
  "author": "The js.cubing.net team",
6
6
  "license": "MPL-2.0 OR GPL-3.0-or-later",
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/metadata/packageVersion.ts"],
4
- "sourcesContent": ["import type { JSONSchemaForNPMPackageJsonFiles } from \"@schemastore/package\";\nimport { Path } from \"path-class\";\n\nexport const packageVersion: string =\n // biome-ignore lint/suspicious/noTsIgnore: This comment is stil present in the compiled file, where an error is *not* expected.\n /** @ts-ignore Populated by `esbuild` at compile time. */\n globalThis.PACKAGE_VERSION ??\n // We don't want `package.json` in the import graph (because this will trip up `esbuild` by default), so we load JSON instead using a dynamic import here.\n // This entire fallback expression should get compiled out by `esbuild`.\n (\n (await Path.resolve(\n \"../../package.json\",\n import.meta.url,\n ).readJSON()) as JSONSchemaForNPMPackageJsonFiles\n ).version;\n"],
5
- "mappings": ";;;AACA,OAAqB;AAEd,IAAM;AAAA;AAAA;AAAA,EAGX;AAAA;",
6
- "names": []
7
- }