Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SNOW-1284306 unused
debug
dependency causes conflict in certain fra…
…meworks, remove unused deps (#824) SNOW-1284306 apparently in `express.js` when there's a newer (v4) `debug` in use, starting up the server which depends on `snowflake-sdk` throws an error `exports.useColors is not a function` which comes from `debug` v3 which is a direct dependency of the Snowflake Node.js driver. Possible approaches would to to upgrade the `debug` package we depend on, or just remove it altogether because it looks like since PR 689, we don't even use the following packages anymore: ``` snowflake-connector-nodejs# depcheck . Unused dependencies * agent-base * debug * extend ``` * `debug` - [removed in PR 689](https://github.com/snowflakedb/snowflake-connector-nodejs/pull/689/files#diff-82db7d4c9169d26dd65b0e50a6329f63aabc7e5c1eff28e57b606eefbd3dc498L16) * `agent-base` - [removed in PR 689](https://github.com/snowflakedb/snowflake-connector-nodejs/pull/689/files#diff-82db7d4c9169d26dd65b0e50a6329f63aabc7e5c1eff28e57b606eefbd3dc498L14) * `extend` - [removed in PR 689](https://github.com/snowflakedb/snowflake-connector-nodejs/pull/689/files#diff-82db7d4c9169d26dd65b0e50a6329f63aabc7e5c1eff28e57b606eefbd3dc498L12)
- Loading branch information