Skip to content

Commit 98c5d71

Browse files
committed
fix(monorepo): Upgrade the devenv modules
1 parent 67eff54 commit 98c5d71

7 files changed

Lines changed: 750 additions & 750 deletions

File tree

devenv.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
},
5656
"nixpkgs-unstable": {
5757
"locked": {
58-
"lastModified": 1775034801,
59-
"narHash": "sha256-tsecHNsWwr4wSaM2oW9GwafMwE24J+xD8bKDoto3exY=",
58+
"lastModified": 1775095191,
59+
"narHash": "sha256-CsqRiYbgQyv01LS0NlC7shwzhDhjNDQSrhBX8VuD3nM=",
6060
"owner": "nixos",
6161
"repo": "nixpkgs",
62-
"rev": "8d029aa64915e54b7846873d9583af4c9fd21ea4",
62+
"rev": "106eb93cbb9d4e4726bf6bc367a3114f7ed6b32f",
6363
"type": "github"
6464
},
6565
"original": {
@@ -102,11 +102,11 @@
102102
]
103103
},
104104
"locked": {
105-
"lastModified": 1773297127,
106-
"narHash": "sha256-6E/yhXP7Oy/NbXtf1ktzmU8SdVqJQ09HC/48ebEGBpk=",
105+
"lastModified": 1775125835,
106+
"narHash": "sha256-2qYcPgzFhnQWchHo0SlqLHrXpux5i6ay6UHA+v2iH4U=",
107107
"owner": "numtide",
108108
"repo": "treefmt-nix",
109-
"rev": "71b125cd05fbfd78cab3e070b73544abe24c5016",
109+
"rev": "75925962939880974e3ab417879daffcba36c4a3",
110110
"type": "github"
111111
},
112112
"original": {

playground/cli/shell-shock.d.ts

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -255,21 +255,21 @@ declare module "shell-shock:env" {
255255
* A checksum hash created during the build.
256256
*
257257
* @readonly
258-
* @defaultValue "Vc5y4S2IxIZivfyFl8tVeqWS9HolABpT"
258+
* @defaultValue "1bZVJF_sh-YaTtAHQ6Av5XNLIeiUOYs4"
259259
*/
260260
readonly BUILD_CHECKSUM: string;
261261
/**
262262
* The unique identifier for the build.
263263
*
264264
* @readonly
265-
* @defaultValue "111b0dc8-af50-4bdb-8c9d-69f27e867586"
265+
* @defaultValue "d41cb1ed-b026-481f-b3a9-1184e5941730"
266266
*/
267267
readonly BUILD_ID: string;
268268
/**
269269
* The timestamp the build was ran at.
270270
*
271271
* @readonly
272-
* @defaultValue "2026-04-02T14:31:40.129Z"
272+
* @defaultValue "2026-04-02T15:30:42.629Z"
273273
*/
274274
readonly BUILD_TIMESTAMP: string;
275275
/**
@@ -500,7 +500,7 @@ declare module "shell-shock:env" {
500500
* The unique identifier for the release.
501501
*
502502
* @readonly
503-
* @defaultValue "1b0dc8af-509b-4b8c-9d69-f27e86758675"
503+
* @defaultValue "1cb1edb0-2628-4f73-a911-84e59417306a"
504504
*/
505505
readonly RELEASE_ID: string;
506506
/**
@@ -2870,59 +2870,59 @@ declare module "shell-shock:banner/completions" {
28702870
}
28712871

28722872
/**
2873-
* A collection of utility functions that assist in displaying banner information for the Completions - PowerShell Configuration command.
2873+
* A collection of utility functions that assist in displaying banner information for the Completions - Bash Configuration command.
28742874
*
2875-
* @module shell-shock:banner/completions/powershell/config
2875+
* @module shell-shock:banner/completions/bash/config
28762876
*/
2877-
declare module "shell-shock:banner/completions/powershell/config" {
2877+
declare module "shell-shock:banner/completions/bash/config" {
28782878
/**
28792879
* Write the Playground command-line interface application banner for the
2880-
* Completions - PowerShell Configuration command to the console.
2880+
* Completions - Bash Configuration command to the console.
28812881
*
28822882
* @param {number} sleepTimeoutMs
28832883
*/
28842884
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
28852885
}
28862886

28872887
/**
2888-
* A collection of utility functions that assist in displaying banner information for the Completions - Zsh Configuration command.
2888+
* A collection of utility functions that assist in displaying banner information for the Completions - Fish Configuration command.
28892889
*
2890-
* @module shell-shock:banner/completions/zsh/config
2890+
* @module shell-shock:banner/completions/fish/config
28912891
*/
2892-
declare module "shell-shock:banner/completions/zsh/config" {
2892+
declare module "shell-shock:banner/completions/fish/config" {
28932893
/**
28942894
* Write the Playground command-line interface application banner for the
2895-
* Completions - Zsh Configuration command to the console.
2895+
* Completions - Fish Configuration command to the console.
28962896
*
28972897
* @param {number} sleepTimeoutMs
28982898
*/
28992899
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
29002900
}
29012901

29022902
/**
2903-
* A collection of utility functions that assist in displaying banner information for the Completions - Fish Configuration command.
2903+
* A collection of utility functions that assist in displaying banner information for the Completions - Zsh Configuration command.
29042904
*
2905-
* @module shell-shock:banner/completions/fish/config
2905+
* @module shell-shock:banner/completions/zsh/config
29062906
*/
2907-
declare module "shell-shock:banner/completions/fish/config" {
2907+
declare module "shell-shock:banner/completions/zsh/config" {
29082908
/**
29092909
* Write the Playground command-line interface application banner for the
2910-
* Completions - Fish Configuration command to the console.
2910+
* Completions - Zsh Configuration command to the console.
29112911
*
29122912
* @param {number} sleepTimeoutMs
29132913
*/
29142914
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
29152915
}
29162916

29172917
/**
2918-
* A collection of utility functions that assist in displaying banner information for the Completions - Bash Configuration command.
2918+
* A collection of utility functions that assist in displaying banner information for the Completions - PowerShell Configuration command.
29192919
*
2920-
* @module shell-shock:banner/completions/bash/config
2920+
* @module shell-shock:banner/completions/powershell/config
29212921
*/
2922-
declare module "shell-shock:banner/completions/bash/config" {
2922+
declare module "shell-shock:banner/completions/powershell/config" {
29232923
/**
29242924
* Write the Playground command-line interface application banner for the
2925-
* Completions - Bash Configuration command to the console.
2925+
* Completions - PowerShell Configuration command to the console.
29262926
*
29272927
* @param {number} sleepTimeoutMs
29282928
*/
@@ -3095,59 +3095,59 @@ declare module "shell-shock:banner/run" {
30953095
}
30963096

30973097
/**
3098-
* A collection of utility functions that assist in displaying banner information for the Completions - PowerShell Script command.
3098+
* A collection of utility functions that assist in displaying banner information for the Completions - Bash Script command.
30993099
*
3100-
* @module shell-shock:banner/completions/powershell/script
3100+
* @module shell-shock:banner/completions/bash/script
31013101
*/
3102-
declare module "shell-shock:banner/completions/powershell/script" {
3102+
declare module "shell-shock:banner/completions/bash/script" {
31033103
/**
31043104
* Write the Playground command-line interface application banner for the
3105-
* Completions - PowerShell Script command to the console.
3105+
* Completions - Bash Script command to the console.
31063106
*
31073107
* @param {number} sleepTimeoutMs
31083108
*/
31093109
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
31103110
}
31113111

31123112
/**
3113-
* A collection of utility functions that assist in displaying banner information for the Completions - Zsh Script command.
3113+
* A collection of utility functions that assist in displaying banner information for the Completions - Fish Script command.
31143114
*
3115-
* @module shell-shock:banner/completions/zsh/script
3115+
* @module shell-shock:banner/completions/fish/script
31163116
*/
3117-
declare module "shell-shock:banner/completions/zsh/script" {
3117+
declare module "shell-shock:banner/completions/fish/script" {
31183118
/**
31193119
* Write the Playground command-line interface application banner for the
3120-
* Completions - Zsh Script command to the console.
3120+
* Completions - Fish Script command to the console.
31213121
*
31223122
* @param {number} sleepTimeoutMs
31233123
*/
31243124
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
31253125
}
31263126

31273127
/**
3128-
* A collection of utility functions that assist in displaying banner information for the Completions - Fish Script command.
3128+
* A collection of utility functions that assist in displaying banner information for the Completions - Zsh Script command.
31293129
*
3130-
* @module shell-shock:banner/completions/fish/script
3130+
* @module shell-shock:banner/completions/zsh/script
31313131
*/
3132-
declare module "shell-shock:banner/completions/fish/script" {
3132+
declare module "shell-shock:banner/completions/zsh/script" {
31333133
/**
31343134
* Write the Playground command-line interface application banner for the
3135-
* Completions - Fish Script command to the console.
3135+
* Completions - Zsh Script command to the console.
31363136
*
31373137
* @param {number} sleepTimeoutMs
31383138
*/
31393139
export function showBanner(sleepTimeoutMs?: number): Promise<void>;
31403140
}
31413141

31423142
/**
3143-
* A collection of utility functions that assist in displaying banner information for the Completions - Bash Script command.
3143+
* A collection of utility functions that assist in displaying banner information for the Completions - PowerShell Script command.
31443144
*
3145-
* @module shell-shock:banner/completions/bash/script
3145+
* @module shell-shock:banner/completions/powershell/script
31463146
*/
3147-
declare module "shell-shock:banner/completions/bash/script" {
3147+
declare module "shell-shock:banner/completions/powershell/script" {
31483148
/**
31493149
* Write the Playground command-line interface application banner for the
3150-
* Completions - Bash Script command to the console.
3150+
* Completions - PowerShell Script command to the console.
31513151
*
31523152
* @param {number} sleepTimeoutMs
31533153
*/
@@ -3260,50 +3260,50 @@ declare module "shell-shock:help/completions" {
32603260
}
32613261

32623262
/**
3263-
* A collection of utility functions that assist in displaying help information for the Completions - PowerShell Configuration command.
3263+
* A collection of utility functions that assist in displaying help information for the Completions - Bash Configuration command.
32643264
*
3265-
* @module shell-shock:help/completions/powershell/config
3265+
* @module shell-shock:help/completions/bash/config
32663266
*/
3267-
declare module "shell-shock:help/completions/powershell/config" {
3267+
declare module "shell-shock:help/completions/bash/config" {
32683268
/**
3269-
* Display help information for the Completions - PowerShell Configuration
3270-
* command.
3269+
* Display help information for the Completions - Bash Configuration command.
32713270
*/
32723271
export function showHelp(): void;
32733272
}
32743273

32753274
/**
3276-
* A collection of utility functions that assist in displaying help information for the Completions - Zsh Configuration command.
3275+
* A collection of utility functions that assist in displaying help information for the Completions - Fish Configuration command.
32773276
*
3278-
* @module shell-shock:help/completions/zsh/config
3277+
* @module shell-shock:help/completions/fish/config
32793278
*/
3280-
declare module "shell-shock:help/completions/zsh/config" {
3279+
declare module "shell-shock:help/completions/fish/config" {
32813280
/**
3282-
* Display help information for the Completions - Zsh Configuration command.
3281+
* Display help information for the Completions - Fish Configuration command.
32833282
*/
32843283
export function showHelp(): void;
32853284
}
32863285

32873286
/**
3288-
* A collection of utility functions that assist in displaying help information for the Completions - Fish Configuration command.
3287+
* A collection of utility functions that assist in displaying help information for the Completions - Zsh Configuration command.
32893288
*
3290-
* @module shell-shock:help/completions/fish/config
3289+
* @module shell-shock:help/completions/zsh/config
32913290
*/
3292-
declare module "shell-shock:help/completions/fish/config" {
3291+
declare module "shell-shock:help/completions/zsh/config" {
32933292
/**
3294-
* Display help information for the Completions - Fish Configuration command.
3293+
* Display help information for the Completions - Zsh Configuration command.
32953294
*/
32963295
export function showHelp(): void;
32973296
}
32983297

32993298
/**
3300-
* A collection of utility functions that assist in displaying help information for the Completions - Bash Configuration command.
3299+
* A collection of utility functions that assist in displaying help information for the Completions - PowerShell Configuration command.
33013300
*
3302-
* @module shell-shock:help/completions/bash/config
3301+
* @module shell-shock:help/completions/powershell/config
33033302
*/
3304-
declare module "shell-shock:help/completions/bash/config" {
3303+
declare module "shell-shock:help/completions/powershell/config" {
33053304
/**
3306-
* Display help information for the Completions - Bash Configuration command.
3305+
* Display help information for the Completions - PowerShell Configuration
3306+
* command.
33073307
*/
33083308
export function showHelp(): void;
33093309
}
@@ -3441,49 +3441,49 @@ declare module "shell-shock:help/run" {
34413441
}
34423442

34433443
/**
3444-
* A collection of utility functions that assist in displaying help information for the Completions - PowerShell Script command.
3444+
* A collection of utility functions that assist in displaying help information for the Completions - Bash Script command.
34453445
*
3446-
* @module shell-shock:help/completions/powershell/script
3446+
* @module shell-shock:help/completions/bash/script
34473447
*/
3448-
declare module "shell-shock:help/completions/powershell/script" {
3448+
declare module "shell-shock:help/completions/bash/script" {
34493449
/**
3450-
* Display help information for the Completions - PowerShell Script command.
3450+
* Display help information for the Completions - Bash Script command.
34513451
*/
34523452
export function showHelp(): void;
34533453
}
34543454

34553455
/**
3456-
* A collection of utility functions that assist in displaying help information for the Completions - Zsh Script command.
3456+
* A collection of utility functions that assist in displaying help information for the Completions - Fish Script command.
34573457
*
3458-
* @module shell-shock:help/completions/zsh/script
3458+
* @module shell-shock:help/completions/fish/script
34593459
*/
3460-
declare module "shell-shock:help/completions/zsh/script" {
3460+
declare module "shell-shock:help/completions/fish/script" {
34613461
/**
3462-
* Display help information for the Completions - Zsh Script command.
3462+
* Display help information for the Completions - Fish Script command.
34633463
*/
34643464
export function showHelp(): void;
34653465
}
34663466

34673467
/**
3468-
* A collection of utility functions that assist in displaying help information for the Completions - Fish Script command.
3468+
* A collection of utility functions that assist in displaying help information for the Completions - Zsh Script command.
34693469
*
3470-
* @module shell-shock:help/completions/fish/script
3470+
* @module shell-shock:help/completions/zsh/script
34713471
*/
3472-
declare module "shell-shock:help/completions/fish/script" {
3472+
declare module "shell-shock:help/completions/zsh/script" {
34733473
/**
3474-
* Display help information for the Completions - Fish Script command.
3474+
* Display help information for the Completions - Zsh Script command.
34753475
*/
34763476
export function showHelp(): void;
34773477
}
34783478

34793479
/**
3480-
* A collection of utility functions that assist in displaying help information for the Completions - Bash Script command.
3480+
* A collection of utility functions that assist in displaying help information for the Completions - PowerShell Script command.
34813481
*
3482-
* @module shell-shock:help/completions/bash/script
3482+
* @module shell-shock:help/completions/powershell/script
34833483
*/
3484-
declare module "shell-shock:help/completions/bash/script" {
3484+
declare module "shell-shock:help/completions/powershell/script" {
34853485
/**
3486-
* Display help information for the Completions - Bash Script command.
3486+
* Display help information for the Completions - PowerShell Script command.
34873487
*/
34883488
export function showHelp(): void;
34893489
}

0 commit comments

Comments
 (0)