A `syncpack` config created by personal preferences
npm install @nice-move/syncpack-configA [syncpack] config created by personal preferences.
[![npm][npm-badge]][npm-url]
[![github][github-badge]][github-url]
![node][node-badge]
[syncpack]: https://jamiemason.github.io/
[npm-url]: https://www.npmjs.com/package/@nice-move/syncpack-config
[npm-badge]: https://img.shields.io/npm/v/@nice-move/syncpack-config.svg?style=flat-square&logo=npm
[github-url]: https://github.com/nice-move/nice-move/tree/master/packages/syncpack-config
[github-badge]: https://img.shields.io/npm/l/@nice-move/syncpack-config.svg?style=flat-square&colorB=blue&logo=github
[node-badge]: https://img.shields.io/node/v/@nice-move/syncpack-config.svg?style=flat-square&colorB=green&logo=node.js
``bash`
npm install @nice-move/syncpack-config --save-dev
`mjs
// example: syncpack.config.mjs
// @ts-check
import defineConfig from '@nice-move/syncpack-config';
export default defineConfig(import.meta.url, {
versionGroups: [
{
dependencies: ['@example/*'],
dependencyTypes: ['!local'],
label: 'Pin pnpm workspace',
pinVersion: 'workspace:~'
}
]
});
``