@powerhousedao/config 6.0.0-dev.234 → 6.0.0-dev.236

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/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 6.0.0-dev.236 (2026-05-09)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add download button ([#2586](https://github.com/powerhouse-inc/powerhouse/pull/2586))
6
+ - new test-sync-queue cli app that detects sync drift for large drives ([771352e08](https://github.com/powerhouse-inc/powerhouse/commit/771352e08))
7
+ - new test-sync-queue cli app that detects sync drift for large drives ([ddcd53f1e](https://github.com/powerhouse-inc/powerhouse/commit/ddcd53f1e))
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Benjamin Jordan
12
+ - Ryan Wolhuter @ryanwolhuter
13
+
14
+ ## 6.0.0-dev.235 (2026-05-08)
15
+
16
+ This was a version bump only for @powerhousedao/config to align it with other projects, there were no code changes.
17
+
1
18
  ## 6.0.0-dev.234 (2026-05-08)
2
19
 
3
20
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerhousedao/config",
3
- "version": "6.0.0-dev.234",
3
+ "version": "6.0.0-dev.236",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0-only",
6
6
  "private": false,
@@ -25,7 +25,7 @@
25
25
  "access": "public"
26
26
  },
27
27
  "dependencies": {
28
- "@powerhousedao/shared": "6.0.0-dev.234"
28
+ "@powerhousedao/shared": "6.0.0-dev.236"
29
29
  },
30
30
  "devDependencies": {
31
31
  "tsdown": "0.21.1"
package/tsdown.config.ts CHANGED
@@ -4,6 +4,9 @@ export default defineConfig({
4
4
  entry: ["src/index.ts", "src/node.ts"],
5
5
  outDir: "dist",
6
6
  platform: "neutral",
7
+ deps: {
8
+ neverBundle: [/^node:/],
9
+ },
7
10
  clean: true,
8
11
  dts: true,
9
12
  sourcemap: true,