doc-detective 4.6.0-next.5 → 4.6.0-next.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.
@@ -23,7 +23,7 @@ export interface ShimPackageJson {
23
23
  * Returns the version constraint declared in the shim's own package.json
24
24
  * for `name`. The version source differs between the published package and
25
25
  * a source/CI checkout, so we check in priority order:
26
- * 1. `ddRuntimeDependencies` — the published state. prepack.js moves the
26
+ * 1. `ddRuntimeDependencies` — the published state. The publish step moves the
27
27
  * heavy deps here so npm never auto-installs them.
28
28
  * 2. `optionalDependencies` — the source/CI state (kept for Dependabot).
29
29
  * 3. `dependencies` — the legacy state, pre lazy-install migration.
@@ -54,7 +54,7 @@ function readShimPackageJson() {
54
54
  * Returns the version constraint declared in the shim's own package.json
55
55
  * for `name`. The version source differs between the published package and
56
56
  * a source/CI checkout, so we check in priority order:
57
- * 1. `ddRuntimeDependencies` — the published state. prepack.js moves the
57
+ * 1. `ddRuntimeDependencies` — the published state. The publish step moves the
58
58
  * heavy deps here so npm never auto-installs them.
59
59
  * 2. `optionalDependencies` — the source/CI state (kept for Dependabot).
60
60
  * 3. `dependencies` — the legacy state, pre lazy-install migration.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doc-detective",
3
- "version": "4.6.0-next.5",
3
+ "version": "4.6.0-next.6",
4
4
  "description": "Treat doc content as testable assertions to validate doc accuracy and product UX.",
5
5
  "bin": {
6
6
  "doc-detective": "bin/doc-detective.js",
@@ -31,8 +31,6 @@
31
31
  "./cli": "./bin/doc-detective.js"
32
32
  },
33
33
  "scripts": {
34
- "prepack": "node --disable-warning=DEP0190 scripts/prepack.js",
35
- "postpack": "node --disable-warning=DEP0190 scripts/postpack.js",
36
34
  "postinstall": "node --disable-warning=DEP0190 scripts/postinstall.js",
37
35
  "prepare": "husky",
38
36
  "commitlint": "commitlint --edit",