@stravigor/devtools 0.1.1 → 0.4.1

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": "@stravigor/devtools",
3
- "version": "0.1.1",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "Debug inspector and performance monitor for the Strav framework",
6
6
  "license": "MIT",
@@ -11,9 +11,14 @@
11
11
  "strav": {
12
12
  "commands": "src/commands"
13
13
  },
14
- "files": ["src/", "stubs/", "package.json", "tsconfig.json"],
14
+ "files": [
15
+ "src/",
16
+ "stubs/",
17
+ "package.json",
18
+ "tsconfig.json"
19
+ ],
15
20
  "peerDependencies": {
16
- "@stravigor/core": "0.2.6"
21
+ "@stravigor/core": "0.3.3"
17
22
  },
18
23
  "scripts": {
19
24
  "test": "bun test tests/",
@@ -2,7 +2,7 @@ import { env } from '@stravigor/core/helpers'
2
2
 
3
3
  export default {
4
4
  /** Enable or disable devtools entirely. */
5
- enabled: env('DEVTOOLS_ENABLED', 'true').bool(),
5
+ enabled: env.bool('DEVTOOLS_ENABLED', true),
6
6
 
7
7
  storage: {
8
8
  /** Automatically prune entries older than this many hours. */