bundle and validate commands are failing due to swagger-parser
@apidevtools/swagger-parser is broken.
The 10.0.4 release, in this commit, swagger-parser moved off z-schema over to ajv, since then, it is impossible to bundle or validate swagger files.
Error
Cannot find module 'ajv/dist/core'
Require stack: /data/node_modules/ajv-draft-04/dist/index.js /data/node_modules/@apidevtools/swagger-parser/lib/validators/schema.js /data/node_modules/@apidevtools/swagger-parser/lib/index.js /data/node_modules/@apidevtools/swagger-cli/lib/bundle.js /data/node_modules/@apidevtools/swagger-cli/lib/index.js /data/node_modules/@apidevtools/swagger-cli/bin/swagger-cli.js /data/node_modules/swagger-cli/swagger-cli.js
Tested on:
npm: 8.5.5 node: 16.15.0
npm: 6.14.15 node: 14.18.2
+1, for now got it working by installing ajv-dist: npm install [email protected]
+1, for now got it working by installing ajv-dist:
npm install [email protected]
+1 to this also.
Managed to get this to mysteriously work by reinstalling swagger-cli@^3.0.1, and then back at swagger-cli@^4.0.4 (clearing node_modules, npm caches & package-lock files in between)...now cannot reproduce it with the current version even, so possibly still some caches left globally in my env etc.
node: v14.19.0 npm: 6.14.17
Also ran into this. v3 works.