gpt4 book ai didi

javascript - npm:从现有依赖树添加依赖

转载 作者:行者123 更新时间:2023-11-30 14:57:17 25 4
gpt4 key购买 nike

我有一个使用 vuetable-2vue-axios 的 Vue 应用程序,在 app.js 中导入了以下内容

import Vue from 'vue'
import VueMaterial from 'vue-material'
import axios from 'axios'
import VueAxios from 'vue-axios'

如果 package.json 的 dependencies 部分没有直接 axios,eslint 会报错

[eslint] 'axios' should be listed in the project's dependencies.

我已经在 ./node_modules 中有 axios 作为 vue-axios 依赖项的一部分。

└─┬ vuetable-2@1.6.6
└── axios@0.15.3

运行 npm install --save axios 将获取最新版本的 axios 并将其添加到 package.json,但现在我有我的依赖项中有 2 个版本的 axios

├── axios@0.17.0 
└─┬ vuetable-2@1.6.6
└── axios@0.15.3

如何重用 axios@0.15.3vuetable-2 依赖项的一部分?

最佳答案

不要忘记确切的版本

在 package.json 中写入没有 ^或输入 npm i axios@0.15.3 -S -E

-E, --save-exact: Saved dependencies will be configured with an exact version rather than using npm's default semver range operator.

关于javascript - npm:从现有依赖树添加依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47050273/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com