ArianHamdi changed the title [Bug]: [7.0.0-beta.17]: using pnpm with nextjs, module not found: Error: Can't resolve 'style-loader' [Bug]: [7.0.0-beta.19]: using pnpm with nextjs, module not found: Error: Can't resolve 'style-loader' Jan 2, 2023 ArianHamdi mentioned this iss...
@types+lodash@4.14.196/node_modules/@types/lodash/common/object.d.ts (2,16): Cannot augment module '_' with value exports because it resolves to a non-module entity. /home/kinland/node_modules/.pnpm/@types+lodash@4.14.196/node_modules/@types/lodash/common/object.d.ts (417,24): ...
pnpm uses hard links and symlinks to save one version of a module only ever once on a disk. When using npm or Yarn for example, if you have 100 projects using the same version of lodash, you will have 100 copies of lodash on disk. With pnpm, lodash will be saved in a single place...
1234 pnpm v5 uses a content-addressable filesystem to store all files from all module directories on a disk. If you depend on different versions of lodash, only the files that differ are added to the store. If lodash has 100 files, and a new version has a change only in one of those...
619 pnpm v5 uses a content-addressable filesystem to store all files from all module directories on a disk. If you depend on different versions of lodash, only the files that differ are added to the store. If lodash has 100 files, and a new version has a change only in one of those...
pnpm uses hard links and symlinks to save one version of a module only ever once on a disk. When using npm or Yarn for example, if you have 100 projects using the same version of lodash, you will have 100 copies of lodash on disk. With pnpm, lodash will be saved in a single place...
lodash 4.14.167 + @types/node 14.0.27 + @types/node-fetch 2.5.8 + @types/proxyquire 1.3.28 + @types/randombytes 2.0.0 + @types/react 16.14.2 + @types/react-dom 16.9.10 + @types/react-redux 7.1.15 + @types/react-router 5.1.11 + @types/react-router-dom 5.1.7 + @types/...
nacho@Ignacios-MacBook-Pro pnpm-peer-dependency % ls -l node_modules/.pnpm/@ignacioaldama+example.some-package@0.0.1_lodash@4.17.21_punycode@2.3.0_react@18.2.0_vue@2.7.14/node_modules total 0 drwxr-xr-x 3 nacho wheel 96 Sep 5 14:30 @ignacioaldama ...
PS D:\repos\teve-no\task4s> pnpm store status ERR_PNPM_MODIFIED_DEPENDENCY Packages in the store have been mutated These packages are modified: registry.npmjs.org/@babel/helper-define-polyfill-provider/0.4.2(@babel/core@7.22.9) registry.npmjs.org/@babel/helper-module-transforms/7.23...
require('lodash@4.0.0'). It'd also be weird to be able to require packages not in your project. On Saturday, January 30, 2016, Chris McVittienotifications@github.com wrote: what about the path to the store being ~/.pnpm/store/node_modules?