json messages is empty when use pnpm
See original GitHub issuepnpm store package in a different way, so ../../src
is not point to project src folder
vue inspect --rule i18n-resource
/* config.module.rule('i18n-resource') */
{
test: /\.(json5?|ya?ml)$/,
type: 'javascript/auto',
include: [
'${workspaceFolder}\\node_modules\\.pnpm\\vue-cli-plugin-i18n@2.1.0\\src\\locales'
],
use: [
/* config.module.rule('i18n-resource').use('i18n-resource') */
{
loader: '@intlify/vue-i18n-loader'
}
]
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Developers - json messages is empty when use pnpm -
json messages is empty when use pnpm. ... pnpm store package in a different way, so ../../src is not point to project src...
Read more >PNPM_PACKAGE_NAME doesn't seem to be set in exec #4320
json like "check": "pnpm --recursive exec -- echo $PNPM_PACKAGE_NAME", it just outputs empty lines, one for each module. Every module has a name ......
Read more >pnpm/pnpm - Gitter
Hi! I'm looking for the most simple way to empty a 'node_modules' folder under Windows. Something like pnpm uninstall all (which does not...
Read more >NPM Install Error:Unexpected end of JSON input while ...
On the other hand, if you're debugging an issue with the installer, you can use npm install --cache /tmp/empty-cache to use a temporary...
Read more >package.json | pnpm
During local development, pnpm will always fail with an error message if its ... If all projects in the monorepo use the same...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
workaround:
i18n plugin should search nearest
node_modules
or use a different default value for pnpmok I fixed it in the vue.config.js
Thanks