build-raptor 0.131.0 → 0.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build-raptor.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -3
package/build-raptor.js
CHANGED
|
@@ -5597,7 +5597,7 @@ var require_yarn_repo_protocol_config = __commonJS({
|
|
|
5597
5597
|
exports.YarnRepoProtocolConfig = void 0;
|
|
5598
5598
|
var zod_1 = __require("zod");
|
|
5599
5599
|
exports.YarnRepoProtocolConfig = zod_1.z.object({
|
|
5600
|
-
uberBuild: zod_1.z.boolean().optional().describe("Whether to let tsc to build multiple units of the monorepo. When set to false,
|
|
5600
|
+
uberBuild: zod_1.z.boolean().optional().describe("Whether to let tsc to build multiple units of the monorepo at once. When set to false, the compiler is called for each unit separately."),
|
|
5601
5601
|
cacheCompilationOutputs: zod_1.z.boolean().optional().describe('Whether to cache the outputs of tsc (the "dist" directory). Default to true.'),
|
|
5602
5602
|
install: zod_1.z.boolean().optional().or(zod_1.z.union([zod_1.z.literal("off"), zod_1.z.literal("dormant"), zod_1.z.literal("on")])).describe("[EXPERIMENTAL - Not yet stable] Controls yarn install behavior. 'off': Skip install, 'dormant': Install only if no node_modules exists, 'on': Always install. Can also be set to boolean (true='on', false='off')."),
|
|
5603
5603
|
enableCustomTestCommands: zod_1.z.boolean().optional().describe("Whether to enable custom test commands specified in package.json files via buildRaptor.testCommand. When false, the standard Jest runner will always be used regardless of package configuration. Defaults to true (custom test commands are enabled)."),
|
package/index.js
CHANGED
|
@@ -5596,7 +5596,7 @@ var require_yarn_repo_protocol_config = __commonJS({
|
|
|
5596
5596
|
exports.YarnRepoProtocolConfig = void 0;
|
|
5597
5597
|
var zod_1 = __require("zod");
|
|
5598
5598
|
exports.YarnRepoProtocolConfig = zod_1.z.object({
|
|
5599
|
-
uberBuild: zod_1.z.boolean().optional().describe("Whether to let tsc to build multiple units of the monorepo. When set to false,
|
|
5599
|
+
uberBuild: zod_1.z.boolean().optional().describe("Whether to let tsc to build multiple units of the monorepo at once. When set to false, the compiler is called for each unit separately."),
|
|
5600
5600
|
cacheCompilationOutputs: zod_1.z.boolean().optional().describe('Whether to cache the outputs of tsc (the "dist" directory). Default to true.'),
|
|
5601
5601
|
install: zod_1.z.boolean().optional().or(zod_1.z.union([zod_1.z.literal("off"), zod_1.z.literal("dormant"), zod_1.z.literal("on")])).describe("[EXPERIMENTAL - Not yet stable] Controls yarn install behavior. 'off': Skip install, 'dormant': Install only if no node_modules exists, 'on': Always install. Can also be set to boolean (true='on', false='off')."),
|
|
5602
5602
|
enableCustomTestCommands: zod_1.z.boolean().optional().describe("Whether to enable custom test commands specified in package.json files via buildRaptor.testCommand. When false, the standard Jest runner will always be used regardless of package configuration. Defaults to true (custom test commands are enabled)."),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "build-raptor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.132.0",
|
|
4
4
|
"description": "CLI for super-fast monorepo builds",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,9 +13,8 @@
|
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@aws-sdk/client-s3": "^3.623.0",
|
|
16
|
-
"aws-sdk": "^2.1667.0",
|
|
17
16
|
"build-raptor-dynamic-loader": "^1.0.1",
|
|
18
|
-
"build-raptor-jest-reporter": "0.
|
|
17
|
+
"build-raptor-jest-reporter": "0.132.0",
|
|
19
18
|
"escape-string-regexp": "^4.0.0",
|
|
20
19
|
"execa": "^5.0.0",
|
|
21
20
|
"fs-extra": "^9.0.0",
|