@nice-code/action 0.5.2 → 0.5.4

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.
@@ -2399,7 +2399,10 @@ import { useEffect, useRef, useState as useState2 } from "react";
2399
2399
 
2400
2400
  // src/devtools/browser/devtools_storage.ts
2401
2401
  import { createTypedWebLocalStorage } from "@nice-code/util";
2402
- var devtools_storage = createTypedWebLocalStorage(window.localStorage, "nice-action-devtools::");
2402
+ var devtools_storage = createTypedWebLocalStorage({
2403
+ localStorage: window.localStorage,
2404
+ keyPrefix: "nice-action-devtools::"
2405
+ });
2403
2406
  devtools_storage.updateJsonWithDef("runtimeToProjectFilePath", {}, (prev) => prev);
2404
2407
 
2405
2408
  // ../../node_modules/.bun/source-map-js@1.2.1/node_modules/source-map-js/source-map.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nice-code/action",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -44,9 +44,9 @@
44
44
  "build-types": "tsc --project tsconfig.build.json"
45
45
  },
46
46
  "dependencies": {
47
- "@nice-code/common-errors": "0.5.2",
48
- "@nice-code/error": "0.5.2",
49
- "@nice-code/util": "0.5.2",
47
+ "@nice-code/common-errors": "0.5.4",
48
+ "@nice-code/error": "0.5.4",
49
+ "@nice-code/util": "0.5.4",
50
50
  "@standard-schema/spec": "^1.1.0",
51
51
  "@tanstack/react-virtual": "^3.13.26",
52
52
  "http-status-codes": "^2.3.0",