@osdk/react-devtools 0.5.0 → 0.8.0

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/CHANGELOG.md +19 -0
  2. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @osdk/react-devtools
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4e0e7f6: Add docs for `@osdk/react-devtools` covering install, the Vite plugin, and the Performance, Compute, Intercept, and Debugging tabs.
8
+
9
+ ## 0.7.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 327aeda: Make react-devtools package private
14
+
15
+ ## 0.6.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 56c5630: Drop redundant `--config $(find-up dprint.json)` from `lint`, `fix-lint`, and `format` scripts. dprint already auto-discovers `dprint.json` by walking up from cwd; the substitution was a no-op anyway since `find-up` is an npm package, not a CLI. Also fix the `uploadMediaOntologyEdits` documentation example so its `// @ts-ignore` survives dprint reformatting (the broken `format` step had been masking this).
20
+ - aeaafe5: Make react-devtools package public, ready for release pipeline.
21
+
3
22
  ## 0.5.0
4
23
 
5
24
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/react-devtools",
3
- "version": "0.5.0",
3
+ "version": "0.8.0",
4
4
  "description": "Developer tools and debugging utilities for OSDK React Toolkit",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -31,19 +31,6 @@
31
31
  "default": "./build/esm/public/*.js"
32
32
  }
33
33
  },
34
- "scripts": {
35
- "check-attw": "attw --profile esm-only --pack . --exclude-entrypoints ./styles.css",
36
- "check-spelling": "cspell --quiet .",
37
- "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
38
- "dev": "vite",
39
- "fix-lint": "eslint . --fix && dprint fmt",
40
- "lint": "eslint . && dprint check",
41
- "preview": "vite preview",
42
- "test": "vitest run",
43
- "transpileEsm": "monorepo.tool.transpile -f esm -m normal -t node && node scripts/build-css.mjs",
44
- "transpileTypes": "monorepo.tool.transpile -f esm -m types -t node",
45
- "typecheck": "tsc --noEmit --emitDeclarationOnly false"
46
- },
47
34
  "dependencies": {
48
35
  "@blueprintjs/core": "^6.10.0",
49
36
  "@blueprintjs/icons": "^6.7.0",
@@ -73,11 +60,6 @@
73
60
  }
74
61
  },
75
62
  "devDependencies": {
76
- "@osdk/api": "workspace:*",
77
- "@osdk/client": "workspace:*",
78
- "@osdk/monorepo.api-extractor": "workspace:~",
79
- "@osdk/monorepo.tsconfig": "workspace:~",
80
- "@osdk/react": "workspace:*",
81
63
  "@testing-library/react": "^16.0.1",
82
64
  "@types/react": "^18.3.12",
83
65
  "@types/react-dom": "^18.3.5",
@@ -90,7 +72,12 @@
90
72
  "sass-embedded": "^1.89.2",
91
73
  "typescript": "~5.5.4",
92
74
  "vite": "^6.3.5",
93
- "vitest": "^2.0.0"
75
+ "vitest": "^2.0.0",
76
+ "@osdk/monorepo.api-extractor": "~0.7.0",
77
+ "@osdk/api": "2.28.0",
78
+ "@osdk/monorepo.tsconfig": "~0.7.0",
79
+ "@osdk/client": "2.28.0",
80
+ "@osdk/react": "2.28.0"
94
81
  },
95
82
  "publishConfig": {
96
83
  "access": "public"
@@ -110,5 +97,18 @@
110
97
  "**/*.scss",
111
98
  "**/styles.js"
112
99
  ],
113
- "type": "module"
114
- }
100
+ "type": "module",
101
+ "scripts": {
102
+ "check-attw": "attw --profile esm-only --pack . --exclude-entrypoints ./styles.css",
103
+ "check-spelling": "cspell --quiet .",
104
+ "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
105
+ "dev": "vite",
106
+ "fix-lint": "eslint . --fix && dprint fmt",
107
+ "lint": "eslint . && dprint check",
108
+ "preview": "vite preview",
109
+ "test": "vitest run",
110
+ "transpileEsm": "monorepo.tool.transpile -f esm -m normal -t node && node scripts/build-css.mjs",
111
+ "transpileTypes": "monorepo.tool.transpile -f esm -m types -t node",
112
+ "typecheck": "tsc --noEmit --emitDeclarationOnly false"
113
+ }
114
+ }