mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-11 10:40:53 -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>
19 lines
303 B
JSON
19 lines
303 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "../node_modules/.test.lib",
|
|
"rootDir": "..",
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"../../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": ".."
|
|
}
|
|
]
|
|
}
|