
You have a dependency in your project and want to execute a command using it? The pnpm exec command can help you with that.
pnpm exec eslint . --ext .ts
Given that ESLint is a project dependency, this example shows how to use the pnpm exec command to run the ESLint tool on all TypeScript files within the project.
devDependencies of your project.If the command you are using does not conflict with a built-in pnpm command, there is no need to specify 'exec'. Referring to the previous example, you can simply run:
pnpm eslint . --ext .ts
It's one of the small details that make using pnpm so pleasant.
Handle token retrieval while querying an API
Using a DelegatingHandler
Vue.js CI/CD: Continuous Integration
Post about continuous integration with Vue.js.