Skip to content

Commit

Permalink
fix: node axios installation instructions (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion authored Nov 2, 2023
1 parent e2d2381 commit 11503d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/helpers/__snapshots__/utils.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ exports[`availableTargets > returns all available targets 1`] = `
{
"description": "Promise based HTTP client for the browser and node.js",
"extname": ".cjs",
"install": "npm install axios --save",
"installation": "npm install axios --save",
"key": "axios",
"link": "https://github.com/axios/axios",
"title": "Axios",
Expand Down
2 changes: 1 addition & 1 deletion src/targets/node/axios/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const axios: Client = {
link: 'https://github.com/axios/axios',
description: 'Promise based HTTP client for the browser and node.js',
extname: '.cjs',
install: 'npm install axios --save',
installation: 'npm install axios --save',
},
convert: ({ method, fullUrl, allHeaders, postData }, options) => {
const opts = {
Expand Down

0 comments on commit 11503d3

Please sign in to comment.