doc-detective 3.4.1 → 3.5.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.
@@ -90,7 +90,7 @@ jobs:
90
90
 
91
91
  - name: Install dependencies
92
92
  if: steps.check_changes.outputs.skip_release == 'false'
93
- run: npm ci
93
+ run: npm install
94
94
 
95
95
  - name: Run tests
96
96
  if: steps.check_changes.outputs.skip_release == 'false'
@@ -28,7 +28,6 @@ jobs:
28
28
  - windows-latest
29
29
  - macos-latest
30
30
  node:
31
- - 18
32
31
  - 20
33
32
  - 22
34
33
  - 24
@@ -41,7 +40,7 @@ jobs:
41
40
  cache: 'npm'
42
41
  cache-dependency-path: package-lock.json
43
42
 
44
- - run: npm ci
43
+ - run: npm install
45
44
  - run: npm test
46
45
 
47
46
  publish-npm:
@@ -58,7 +57,7 @@ jobs:
58
57
  cache-dependency-path: package-lock.json
59
58
  registry-url: https://registry.npmjs.org/
60
59
 
61
- - run: npm ci
60
+ - run: npm install
62
61
  - run: npm publish
63
62
  env:
64
63
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -1,9 +1,4 @@
1
1
  {
2
2
  "input": "dev.spec.json",
3
- "logLevel": "debug",
4
- "integrations": {
5
- "docDetectiveApi": {
6
- "apiKey": "cd6f10bf0a47db1436cb3294b54e4f3e1599ca64be0313039fb0fc474ec8d116"
7
- }
8
- }
3
+ "logLevel": "debug"
9
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doc-detective",
3
- "version": "3.4.1",
3
+ "version": "3.5.0",
4
4
  "description": "Treat doc content as testable assertions to validate doc accuracy and product UX.",
5
5
  "bin": {
6
6
  "doc-detective": "src/index.js"
@@ -34,8 +34,8 @@
34
34
  "dependencies": {
35
35
  "@ffmpeg-installer/ffmpeg": "^1.1.0",
36
36
  "axios": "^1.12.2",
37
- "doc-detective-common": "^3.4.1",
38
- "doc-detective-core": "^3.4.1",
37
+ "doc-detective-common": "^3.5.0",
38
+ "doc-detective-core": "^3.5.0",
39
39
  "yargs": "^17.7.2"
40
40
  },
41
41
  "devDependencies": {