@simplysm/sd-cli 14.1.12 → 14.1.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/sd-cli",
3
- "version": "14.1.12",
3
+ "version": "14.1.13",
4
4
  "description": "Simplysm package - CLI tool",
5
5
  "author": "simplysm",
6
6
  "license": "Apache-2.0",
@@ -44,9 +44,9 @@
44
44
  "ws": "^8.21.0",
45
45
  "yaml": "^2.9.0",
46
46
  "yargs": "^18.0.0",
47
- "@simplysm/core-node": "14.1.12",
48
- "@simplysm/core-common": "14.1.12",
49
- "@simplysm/storage": "14.1.12"
47
+ "@simplysm/core-common": "14.1.13",
48
+ "@simplysm/storage": "14.1.13",
49
+ "@simplysm/core-node": "14.1.13"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@angular/core": "^22.0.4",
@@ -39,14 +39,14 @@ afterEach(() => {
39
39
  });
40
40
 
41
41
  describe("npm package manifest", () => {
42
- it("keeps CLI binary and replaces workspace dependency ranges in Bun pack output", async () => {
42
+ it("keeps CLI binary and replaces workspace dependency ranges in pnpm pack output", async () => {
43
43
  const pkgRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
44
44
  const destination = fs.mkdtempSync(path.join(os.tmpdir(), "sd-cli-pack-"));
45
45
  tmpDirs.push(destination);
46
46
 
47
47
  await cpx.spawn(
48
- "bun",
49
- ["pm", "pack", "--destination", destination, "--ignore-scripts", "--quiet"],
48
+ "pnpm",
49
+ ["pack", "--pack-destination", destination],
50
50
  { cwd: pkgRoot },
51
51
  );
52
52