- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
node.js 版本:16.14.0 yarn 版本:3.1.1macOS:11.6.4(大苏尔)
我建立并继续从事 yarn workspace 项目。我在 github repo 上提交了所有文件,包括 .yarn
、.pnp.cjs
、.pnp.loader.mjs
。
但是,我在更换电脑后遇到了问题。
当我尝试从我的桌面计算机克隆存储库并执行 yarn install
时,它删除了 .pnp.cjs
和 .pnp.loader.mjs
文件并安装了 node_modules
。
其他同事没有遇到这个问题,在我的另一台笔记本电脑上也没有。 Node等其他版本相同。
我多次尝试删除并重新安装 repo,但结果也是一样。
我知道当依赖项包含二进制文件时,尽管使用 Yarn berry,也可以安装 node_modules。但我认为情况并非如此。
下面是安装 node_modules
时的 shell 消息。
➤ YN0000: ┌ Resolution step
➤ YN0000: └ Completed
➤ YN0000: ┌ Fetch step
➤ YN0000: └ Completed in 0s 353ms
➤ YN0000: ┌ Link step
➤ YN0076: │ @swc/core-android-arm-eabi@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-android-arm64@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-darwin-arm64@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-freebsd-x64@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm-gnueabihf@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm64-gnu@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm64-musl@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-x64-gnu@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-x64-musl@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-arm64-msvc@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-ia32-msvc@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-x64-msvc@npm:1.2.126 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-android-arm-eabi@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-android-arm64@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-darwin-arm64@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-freebsd-x64@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm-gnueabihf@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm64-gnu@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-arm64-musl@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-x64-gnu@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-linux-x64-musl@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-arm64-msvc@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-ia32-msvc@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0076: │ @swc/core-win32-x64-msvc@npm:1.2.133 The darwin-x64 architecture is incompatible with this module, link skipped.
➤ YN0000: └ Completed in 8s 368ms
➤ YN0000: Done with warnings in 9s 31ms
我在另一台运行良好的计算机上尝试时收到了不同的消息。
➤ YN0000: ┌ Resolution step
➤ YN0000: └ Completed
➤ YN0000: ┌ Fetch step
➤ YN0000: └ Completed in 0s 428ms
➤ YN0000: ┌ Link step
➤ YN0000: │ ESM support for PnP uses the experimental loader API and is therefore experimental
➤ YN0000: └ Completed
➤ YN0000: Done with warnings in 0s 841ms
最佳答案
您在父目录之一中有 .yarnrc.yml
文件,其中包含 nodeLinker: node-modules
选项(可能在您的用户主文件夹中?),找到这个文件并将其删除。
关于node-modules - yarn berry 安装node_modules,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71206235/
我看到 yarn berry 我得到了即插即用功能而不是 node_modules/ 我找不到任何表明它支持从已安装的包运行的信息。 例如,对于 npm,工作流程可能是运行已安装的 webpack 版
node.js 版本:16.14.0 yarn 版本:3.1.1macOS:11.6.4(大苏尔) 我建立并继续从事 yarn workspace 项目。我在 github repo 上提交了所有文件
node.js 版本:16.14.0 yarn 版本:3.1.1macOS:11.6.4(大苏尔) 我建立并继续从事 yarn workspace 项目。我在 github repo 上提交了所有文件
我想知道我收到电子邮件的手机名称(blackberry/iPhone/ipad)。如何识别手机名称?是否有任何 header 可以识别手机名称? 最佳答案 不,没有。任何旧手机上的任何旧应用程序都可以
我正在寻找一种方法来审计 Yarn 2 中漏洞的依赖关系。在 Yarn 1.x 中,可能与 npm 中的相同。 ,通过运行 yarn audit而不是 npm audit .但是 Yarn 2 没有这
对于 Yarn 的现代版本,又名 Yarn Berry,首选安装是通过 Corepack,Corepack 默认包含在 Node.js 安装中 (>=16.10)。参见 https://yarnpkg
我刚刚在eclipse中新建了一个项目,一创建就出现下面的错误 InvalidRegex: Pattern value '([a-zA-Z_]{1,63}[\s-a-zA-Z_0-9.]{0,63}[
我需要格式化用户在 EditField 上输入的字符串。这是我的代码: input = new BorderedEditField(20, BasicEditField.FILTER_NUMERIC)
在下一个版本的 yarn (“浆果”)中 manual声明应该只提交创建的名为 .yarn 的目录。 ,但如果你使用 yarn 的多版本设置,这个目录包含文件 releases/yarn-berry.
我想在 Air 中为 Android/Black berry 打开 pdf。 我怎么做? 我使用 AIR 2.6,IDE 是 Flash Builder 4.5。 最佳答案 舞台网页 View 。
我是一名优秀的程序员,十分优秀!