mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-25 15:07:06 -04:00
* refactor: rename rebuildSelectedPkgs/rebuildProjects to buildSelectedPkgs/buildProjects The "rebuild" prefix is redundant now that these functions live in @pnpm/building.after-install. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: rename Rebuild option types to Build (RebuildOptions → BuildOptions, etc.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: rename plugin-commands-rebuild and exec.build-commands to building domain - @pnpm/plugin-commands-rebuild → @pnpm/building.build-commands - @pnpm/exec.build-commands → @pnpm/building.policy-commands Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move build-modules and pkg-requires-build to building domain - @pnpm/build-modules → @pnpm/building.during-install - @pnpm/exec.pkg-requires-build → @pnpm/building.pkg-requires-build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: alphabetically sort imports after package renames Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: add changeset --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
792 B
JSON
50 lines
792 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../building/pkg-requires-build"
|
|
},
|
|
{
|
|
"path": "../crypto/integrity"
|
|
},
|
|
{
|
|
"path": "../fs/graceful-fs"
|
|
},
|
|
{
|
|
"path": "../fs/hard-link-dir"
|
|
},
|
|
{
|
|
"path": "../fs/symlink-dependency"
|
|
},
|
|
{
|
|
"path": "../packages/error"
|
|
},
|
|
{
|
|
"path": "../packages/logger"
|
|
},
|
|
{
|
|
"path": "../packages/types"
|
|
},
|
|
{
|
|
"path": "../store/cafs"
|
|
},
|
|
{
|
|
"path": "../store/cafs-types"
|
|
},
|
|
{
|
|
"path": "../store/create-cafs-store"
|
|
},
|
|
{
|
|
"path": "../store/index"
|
|
}
|
|
]
|
|
}
|