mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
* feat(hooks): add `readPackageForPublishing` hook * feat: pass project `dir` parameter to `readPackageForPublishing` hook * chore: cleanup * fix: add support for multiple pnpmfiles * test: readPackageForPublishing hook * test: add more tests * test: small update * refactor: pass in `hooks` as an option * test: pass in `hooks` as an option * test: small update * chore: rename `readPackageForPublishing` to `beforePacking`
41 lines
676 B
JSON
41 lines
676 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../__utils__/prepare"
|
|
},
|
|
{
|
|
"path": "../../catalogs/config"
|
|
},
|
|
{
|
|
"path": "../../catalogs/resolver"
|
|
},
|
|
{
|
|
"path": "../../catalogs/types"
|
|
},
|
|
{
|
|
"path": "../../hooks/pnpmfile"
|
|
},
|
|
{
|
|
"path": "../../packages/error"
|
|
},
|
|
{
|
|
"path": "../../packages/types"
|
|
},
|
|
{
|
|
"path": "../../resolving/jsr-specifier-parser"
|
|
},
|
|
{
|
|
"path": "../read-project-manifest"
|
|
}
|
|
]
|
|
}
|