@caplets/pi 0.5.4 → 0.5.6

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -3350,7 +3350,7 @@ async function loadPiSettingsArgs(options = {}) {
3350
3350
  const settingsPath = options.settingsPath ?? join(homedir(), ".pi", "agent", "settings.json");
3351
3351
  const projectSettingsPath = options.projectSettingsPath ?? join(process.cwd(), ".pi", "settings.json");
3352
3352
  const readSettingsFile = options.readSettingsFile ?? readFileUtf8;
3353
- const writeWarning = options.writeWarning ?? ((message) => process.stderr.write(`${message}\n`));
3353
+ const writeWarning = options.writeWarning ?? (() => void 0);
3354
3354
  const userSettings = await readPiSettingsFile(settingsPath, readSettingsFile, writeWarning);
3355
3355
  const projectSettings = await readPiSettingsFile(projectSettingsPath, readSettingsFile, writeWarning);
3356
3356
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caplets/pi",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native Pi extension for Caplets.",
5
5
  "homepage": "https://github.com/spiritledsoftware/caplets#readme",
6
6
  "bugs": {
@@ -26,11 +26,11 @@
26
26
  "access": "public"
27
27
  },
28
28
  "dependencies": {
29
- "@caplets/core": "0.18.4"
29
+ "@caplets/core": "0.18.6"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^25.9.1",
33
- "@typescript/native-preview": "7.0.0-dev.20260523.1",
33
+ "@typescript/native-preview": "7.0.0-dev.20260527.1",
34
34
  "rolldown": "^1.0.2",
35
35
  "typescript": "^6.0.3",
36
36
  "vitest": "^4.1.7"