@alexgorbatchev/dotfiles 0.0.1
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/LICENSE +21 -0
- package/README.md +397 -0
- package/cli-fj2hdbnx.js +5 -0
- package/cli-fj2hdbnx.js.map +9 -0
- package/cli-w822cqdk.js +4 -0
- package/cli-w822cqdk.js.map +10 -0
- package/cli.js +449 -0
- package/cli.js.map +283 -0
- package/dashboard-0ebz5sqb.js +159 -0
- package/dashboard-0ebz5sqb.js.map +102 -0
- package/dashboard-3axqywva.css +1 -0
- package/dashboard.js +13 -0
- package/package.json +63 -0
- package/prerender-kpxyx916.js +3 -0
- package/prerender-kpxyx916.js.map +11 -0
- package/schemas.d.ts +2730 -0
- package/skill/SKILL.md +74 -0
- package/skill/references/api-reference.md +614 -0
- package/skill/references/configuration.md +1154 -0
- package/skill/references/installation-methods/brew.md +62 -0
- package/skill/references/installation-methods/cargo.md +86 -0
- package/skill/references/installation-methods/curl-binary.md +73 -0
- package/skill/references/installation-methods/curl-script.md +132 -0
- package/skill/references/installation-methods/curl-tar.md +58 -0
- package/skill/references/installation-methods/dmg.md +113 -0
- package/skill/references/installation-methods/gitea-release.md +106 -0
- package/skill/references/installation-methods/github-release.md +97 -0
- package/skill/references/installation-methods/manual.md +74 -0
- package/skill/references/installation-methods/npm.md +75 -0
- package/skill/references/installation-methods/overview.md +293 -0
- package/skill/references/installation-methods/zsh-plugin.md +156 -0
- package/skill/references/make-tool.md +866 -0
- package/skill/references/shell-and-hooks.md +833 -0
- package/tool-types.d.ts +14 -0
- package/wasm-n3cagcre.js +3 -0
- package/wasm-n3cagcre.js.map +10 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Alex Gorbatchev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
# Dotfiles Generator: Declarative, Versioned, and Automated
|
|
2
|
+
|
|
3
|
+
A modern command-line tool for automated management of developer dotfiles, tool installations, and shell configurations across different systems.
|
|
4
|
+
|
|
5
|
+
## Why? The Problem It Solves
|
|
6
|
+
|
|
7
|
+
Traditional dotfiles are often a collection of scattered shell scripts and manual installation steps, leading to:
|
|
8
|
+
|
|
9
|
+
- **Inconsistent Environments**: Your setup on your work machine drifts from your personal machine.
|
|
10
|
+
- **Tedious Manual Setup**: Setting up a new machine takes hours of manual `brew install`, `git clone`, and `cp` commands.
|
|
11
|
+
- **Shell-Only Tools**: Tools installed via shell scripts are often not available to GUI applications like VS Code or Raycast.
|
|
12
|
+
- **Fragile Scripts**: Shell scripts break easily and are hard to maintain and test.
|
|
13
|
+
|
|
14
|
+
This project replaces that fragile, manual system with a declarative, programmatic, and automated solution.
|
|
15
|
+
|
|
16
|
+
## Core Features
|
|
17
|
+
|
|
18
|
+
- **Declarative Tool Management**: Define every tool, from installation to shell integration, in a typed TypeScript file (`.tool.ts`).
|
|
19
|
+
- **Typed Global Configuration**: Author your `dotfiles.config.ts` using a synchronous or asynchronous factory wrapped with `defineConfig` for end-to-end type safety.
|
|
20
|
+
- **Automated On-Demand Installation**: Tools are installed automatically the first time you try to run them. No need to pre-install everything.
|
|
21
|
+
- **Zero-Overhead Shell Startup**: Your shell's startup time is unaffected. All tool loading is deferred until the moment you actually run a command, adding no latency to your shell's initialization.
|
|
22
|
+
- **Global Tool Access**: Automatically generates executable shims, making every tool available system-wide to all applications, not just your interactive shell.
|
|
23
|
+
- **Lightweight Usage Tracking**: Shim executions can be counted in SQLite for usage insights with near-zero user-visible overhead.
|
|
24
|
+
- **Atomic, Versioned Installs**: Each installation is timestamped, and updates are atomic. Rollbacks are as simple as changing a symlink.
|
|
25
|
+
- **Powerful Shell Integration**: Centrally manage aliases, environment variables, shell functions, and completions for Zsh, Bash, and PowerShell.
|
|
26
|
+
- **Cross-Platform by Design**: Define platform-specific configurations for macOS, Linux, and Windows within the same file.
|
|
27
|
+
|
|
28
|
+
## How It Works
|
|
29
|
+
|
|
30
|
+
1. **Define**: You describe a tool's installation and configuration in a `.tool.ts` file.
|
|
31
|
+
2. **Generate**: You run `dotfiles generate`. This creates lightweight executable **shims** for all your defined tools and generates a single shell file to source.
|
|
32
|
+
3. **Run & Auto-Install**: The first time you execute a tool's command (e.g., `rg --version`), the shim intercepts the call, triggers the generator to download and install the tool, and then seamlessly executes your command. All subsequent calls are instantaneous. Each execution can also be tracked asynchronously for dashboard usage stats.
|
|
33
|
+
4. **Source**: Your `.zshrc` or `.bash_profile` sources one line, and all your tools, aliases, and functions become available everywhere.
|
|
34
|
+
|
|
35
|
+
## Quick Start
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Install Bun first: https://bun.sh
|
|
39
|
+
# Then initialize configuration for the first time
|
|
40
|
+
dotfiles init
|
|
41
|
+
|
|
42
|
+
# Install a tool by name
|
|
43
|
+
dotfiles install fzf
|
|
44
|
+
|
|
45
|
+
# Install a tool by binary name (finds tool that provides 'bat')
|
|
46
|
+
dotfiles install bat
|
|
47
|
+
|
|
48
|
+
# Generate shims and shell configuration files
|
|
49
|
+
dotfiles generate
|
|
50
|
+
|
|
51
|
+
# Update all tools to their latest versions
|
|
52
|
+
dotfiles update
|
|
53
|
+
|
|
54
|
+
# View logs of file operations
|
|
55
|
+
dotfiles log
|
|
56
|
+
|
|
57
|
+
# Display tree of installed tool files
|
|
58
|
+
dotfiles files <toolName>
|
|
59
|
+
|
|
60
|
+
# Print the real path to a binary (resolves symlinks)
|
|
61
|
+
dotfiles bin <name>
|
|
62
|
+
|
|
63
|
+
# Create docs symlink in a directory
|
|
64
|
+
dotfiles docs <path>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### CLI Command Completions
|
|
68
|
+
|
|
69
|
+
- `dotfiles generate` writes a zsh completion script to `${generatedDir}/shell-scripts/zsh/completions/_dotfiles`.
|
|
70
|
+
- Reload completions with `autoload -U compinit && compinit` (or restart your shell) after generating.
|
|
71
|
+
- Commands that accept a tool argument (e.g., `install`, `update`, `check-updates`, `files`, `log`, `bin`) now suggest every configured tool name directly in completion menus, so you can pick a target without memorizing identifiers.
|
|
72
|
+
- See [Shell & Hooks Reference](.rulesync/skills/dotfiles/references/shell-and-hooks.md) for shell-specific integration details.
|
|
73
|
+
|
|
74
|
+
### Configure with TypeScript
|
|
75
|
+
|
|
76
|
+
Create `dotfiles.config.ts` to take advantage of TypeScript tooling:
|
|
77
|
+
|
|
78
|
+
```typescript
|
|
79
|
+
// dotfiles.config.ts
|
|
80
|
+
import { defineConfig } from '@alexgorbatchev/dotfiles';
|
|
81
|
+
|
|
82
|
+
export default defineConfig(async () => ({
|
|
83
|
+
paths: {
|
|
84
|
+
dotfilesDir: '~/.dotfiles',
|
|
85
|
+
targetDir: '~/.local/bin',
|
|
86
|
+
},
|
|
87
|
+
github: {
|
|
88
|
+
token: process.env.GITHUB_TOKEN,
|
|
89
|
+
},
|
|
90
|
+
}));
|
|
91
|
+
|
|
92
|
+
export const syncExample = defineConfig(() => ({
|
|
93
|
+
paths: {
|
|
94
|
+
generatedDir: '${configFileDir}/.generated',
|
|
95
|
+
},
|
|
96
|
+
}));
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
## Example: A Complete Tool Configuration
|
|
100
|
+
|
|
101
|
+
Define everything about a tool—installation, binary path, config file symlinks, and shell environment—in one place.
|
|
102
|
+
|
|
103
|
+
```typescript
|
|
104
|
+
// configs/tools/ripgrep.tool.ts
|
|
105
|
+
import { defineTool } from '@alexgorbatchev/dotfiles';
|
|
106
|
+
|
|
107
|
+
export default defineTool((install, ctx) =>
|
|
108
|
+
install('github-release', {
|
|
109
|
+
repo: 'BurntSushi/ripgrep',
|
|
110
|
+
})
|
|
111
|
+
// 1. Define the binary name
|
|
112
|
+
.bin('rg')
|
|
113
|
+
// 2. Declare required binaries that must exist before this tool runs
|
|
114
|
+
.dependsOn('pcre2')
|
|
115
|
+
// 3. Create symlinks for configuration files
|
|
116
|
+
.symlink('./ripgreprc', '~/.ripgreprc')
|
|
117
|
+
// 4. Configure shell-specific integration (aliases, functions, env vars, PATH)
|
|
118
|
+
.zsh((shell) =>
|
|
119
|
+
shell
|
|
120
|
+
// Add custom directories to PATH
|
|
121
|
+
.path((ctx) => `${ctx.installDir}/bin`)
|
|
122
|
+
// Set environment variables (PATH is prohibited here - use .path() instead)
|
|
123
|
+
.env({
|
|
124
|
+
RIPGREP_CONFIG_PATH: '~/.ripgreprc',
|
|
125
|
+
})
|
|
126
|
+
.aliases({
|
|
127
|
+
rgi: 'rg -i', // Case-insensitive search alias
|
|
128
|
+
})
|
|
129
|
+
)
|
|
130
|
+
);
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### Dependency Ordering
|
|
134
|
+
|
|
135
|
+
Tools can depend on binaries provided by other tools (or existing system binaries). Use `.dependsOn('binary-name')` to declare these relationships. The generator validates dependencies before running installs, ensuring:
|
|
136
|
+
|
|
137
|
+
- Providers are present for every required binary
|
|
138
|
+
- No cycles exist between dependent tools
|
|
139
|
+
- Dependencies are available for the active platform/architecture
|
|
140
|
+
|
|
141
|
+
If any dependency checks fail, the CLI exits with detailed diagnostics so you can fix missing or ambiguous providers before continuing.
|
|
142
|
+
|
|
143
|
+
**Type-safe autocomplete:** When you run `generate`, a `tool-types.d.ts` file is automatically created in your `generatedDir` (defaults to `.generated/`) containing all available binary names from your tool configurations. Add this file to your `tsconfig.json` to get autocomplete for dependency names in your `.tool.ts` files:
|
|
144
|
+
|
|
145
|
+
```json
|
|
146
|
+
{
|
|
147
|
+
"include": ["tools/**/*.tool.ts", ".generated/tool-types.d.ts"]
|
|
148
|
+
}
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
This enables IDE autocomplete for the `dependsOn()` method with all known binary names. The file is regenerated each time you run `generate` to stay in sync with your current tool configurations.
|
|
152
|
+
|
|
153
|
+
## Bun runtime requirement
|
|
154
|
+
|
|
155
|
+
The published npm package installs JavaScript files, but the `dotfiles` CLI entrypoint is executed with `#!/usr/bin/env bun`. Bun must be installed and available on `PATH` before you run the public package.
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
# Example global install after Bun is available
|
|
159
|
+
npm install -g @alexgorbatchev/dotfiles
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Documentation
|
|
163
|
+
|
|
164
|
+
### Getting Started
|
|
165
|
+
|
|
166
|
+
- **[Tool Creation Guide](.rulesync/skills/dotfiles/references/make-tool.md)** - Complete guide to creating `.tool.ts` files
|
|
167
|
+
- **[Configuration](.rulesync/skills/dotfiles/references/configuration.md)** - Project config, getting started, common patterns, platform support
|
|
168
|
+
|
|
169
|
+
### Shell Integration
|
|
170
|
+
|
|
171
|
+
- **[Shell & Hooks](.rulesync/skills/dotfiles/references/shell-and-hooks.md)** - Aliases, environment variables, shell functions, completions, lifecycle hooks
|
|
172
|
+
|
|
173
|
+
### Installation Methods & API
|
|
174
|
+
|
|
175
|
+
- **[Installation Methods](.rulesync/skills/dotfiles/references/installation-methods.md)** - All 11 methods: GitHub releases, Gitea, Homebrew, Cargo, npm, curl-script, curl-tar, curl-binary, manual, DMG, zsh-plugin
|
|
176
|
+
- **[API Reference](.rulesync/skills/dotfiles/references/api-reference.md)** - Complete method reference and context API
|
|
177
|
+
|
|
178
|
+
## Global Configuration (`config.ts`)
|
|
179
|
+
|
|
180
|
+
The generator can be customized via a `dotfiles.config.ts` file located in your dotfiles directory (e.g., `~/.dotfiles/dotfiles.config.ts`). The following is a reference for all available options.
|
|
181
|
+
|
|
182
|
+
```typescript
|
|
183
|
+
import { defineConfig } from '@alexgorbatchev/dotfiles';
|
|
184
|
+
|
|
185
|
+
export default defineConfig(() => ({
|
|
186
|
+
// Path to the user's config file.
|
|
187
|
+
// (string, default: ~/.dotfiles/dotfiles.config.ts)
|
|
188
|
+
userConfigPath: '~/.dotfiles/dotfiles.config.ts',
|
|
189
|
+
|
|
190
|
+
// ---------------------------------------------------------------------------
|
|
191
|
+
// File System Paths
|
|
192
|
+
// ---------------------------------------------------------------------------
|
|
193
|
+
paths: {
|
|
194
|
+
// Root directory of the dotfiles repository. You SHOULD set this value.
|
|
195
|
+
// (string, default: ~/.dotfiles)
|
|
196
|
+
dotfilesDir: '~/.dotfiles',
|
|
197
|
+
// Target directory for executable shims. This directory MUST be in your shell's $PATH.
|
|
198
|
+
// (string, default: /usr/local/bin)
|
|
199
|
+
targetDir: '/usr/local/bin',
|
|
200
|
+
// The user's home directory.
|
|
201
|
+
// (string, default: value of $HOME)
|
|
202
|
+
homeDir: '~',
|
|
203
|
+
// Directory where all generated files will be stored.
|
|
204
|
+
// (string, default: ~/.dotfiles/.generated)
|
|
205
|
+
generatedDir: '~/.dotfiles/.generated',
|
|
206
|
+
// Directory containing *.tool.ts tool configuration files.
|
|
207
|
+
// (string, default: ~/.dotfiles/tools)
|
|
208
|
+
toolConfigsDir: '~/.dotfiles/tools',
|
|
209
|
+
// Directory where generated shell scripts are stored.
|
|
210
|
+
// (string, default: ~/.dotfiles/.generated/shell-scripts)
|
|
211
|
+
shellScriptsDir: '~/.dotfiles/.generated/shell-scripts',
|
|
212
|
+
// Directory where downloaded tool binaries are stored.
|
|
213
|
+
// (string, default: ~/.dotfiles/.generated/binaries)
|
|
214
|
+
binariesDir: '~/.dotfiles/.generated/binaries',
|
|
215
|
+
},
|
|
216
|
+
|
|
217
|
+
// ---------------------------------------------------------------------------
|
|
218
|
+
// System Settings
|
|
219
|
+
// ---------------------------------------------------------------------------
|
|
220
|
+
system: {
|
|
221
|
+
// Custom prompt message to display when sudo is required.
|
|
222
|
+
// (string, default: "Please enter your password to continue:")
|
|
223
|
+
sudoPrompt: 'Please enter your password to continue:',
|
|
224
|
+
},
|
|
225
|
+
|
|
226
|
+
// ---------------------------------------------------------------------------
|
|
227
|
+
// Logging Configuration
|
|
228
|
+
// ---------------------------------------------------------------------------
|
|
229
|
+
logging: {
|
|
230
|
+
// Controls debug logging output. Set to "*" to enable all debug logs.
|
|
231
|
+
// (string, default: "")
|
|
232
|
+
debug: '',
|
|
233
|
+
},
|
|
234
|
+
|
|
235
|
+
// ---------------------------------------------------------------------------
|
|
236
|
+
// Automatic Updates
|
|
237
|
+
// ---------------------------------------------------------------------------
|
|
238
|
+
updates: {
|
|
239
|
+
// If true, automatically check for tool updates on certain runs.
|
|
240
|
+
// (boolean, default: true)
|
|
241
|
+
checkOnRun: true,
|
|
242
|
+
// Interval in seconds between automatic update checks.
|
|
243
|
+
// (number, default: 86400, i.e., 24 hours)
|
|
244
|
+
checkInterval: 86400,
|
|
245
|
+
},
|
|
246
|
+
|
|
247
|
+
// ---------------------------------------------------------------------------
|
|
248
|
+
// Features Configuration
|
|
249
|
+
// ---------------------------------------------------------------------------
|
|
250
|
+
features: {
|
|
251
|
+
// Configuration for the tool catalog generation.
|
|
252
|
+
catalog: {
|
|
253
|
+
// If true, generate a markdown catalog of all tools.
|
|
254
|
+
// (boolean, default: true)
|
|
255
|
+
generate: true,
|
|
256
|
+
// Path where the catalog file will be generated.
|
|
257
|
+
// (string, default: {paths.dotfilesDir}/CATALOG.md)
|
|
258
|
+
filePath: '{paths.dotfilesDir}/CATALOG.md',
|
|
259
|
+
},
|
|
260
|
+
|
|
261
|
+
// Configuration for shell initialization.
|
|
262
|
+
// Controls where the shell initialization scripts are sourced.
|
|
263
|
+
shellInstall: {
|
|
264
|
+
// Path to zsh configuration file (e.g., ~/.zshrc).
|
|
265
|
+
// If not provided, zsh initialization will be skipped.
|
|
266
|
+
zsh: '~/.zshrc',
|
|
267
|
+
// Path to bash configuration file (e.g., ~/.bashrc).
|
|
268
|
+
// If not provided, bash initialization will be skipped.
|
|
269
|
+
bash: '~/.bashrc',
|
|
270
|
+
// Path to powershell configuration file (e.g., ~/.config/powershell/profile.ps1).
|
|
271
|
+
// If not provided, powershell initialization will be skipped.
|
|
272
|
+
powershell: '~/.config/powershell/profile.ps1',
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
|
|
276
|
+
// ---------------------------------------------------------------------------
|
|
277
|
+
// API and Service Configurations
|
|
278
|
+
// ---------------------------------------------------------------------------
|
|
279
|
+
github: {
|
|
280
|
+
// GitHub API host.
|
|
281
|
+
// (string, default: "https://api.github.com")
|
|
282
|
+
host: 'https://api.github.com',
|
|
283
|
+
// GitHub API token. Can be set via GITHUB_TOKEN environment variable.
|
|
284
|
+
// (string, optional)
|
|
285
|
+
token: '',
|
|
286
|
+
// User-Agent for GitHub API requests.
|
|
287
|
+
// (string, default: "dotfiles-generator")
|
|
288
|
+
userAgent: 'dotfiles-generator',
|
|
289
|
+
// Caching for GitHub API requests.
|
|
290
|
+
cache: {
|
|
291
|
+
enabled: true,
|
|
292
|
+
ttl: 86400000, // 24 hours in ms
|
|
293
|
+
},
|
|
294
|
+
},
|
|
295
|
+
|
|
296
|
+
cargo: {
|
|
297
|
+
// User-Agent for Cargo-related requests.
|
|
298
|
+
userAgent: 'dotfiles-generator',
|
|
299
|
+
// Configuration for the crates.io API.
|
|
300
|
+
cratesIo: {
|
|
301
|
+
host: 'https://crates.io',
|
|
302
|
+
cache: {
|
|
303
|
+
enabled: true,
|
|
304
|
+
ttl: 86400000,
|
|
305
|
+
},
|
|
306
|
+
},
|
|
307
|
+
// Configuration for accessing raw files on GitHub (e.g., Cargo.toml).
|
|
308
|
+
githubRaw: {
|
|
309
|
+
host: 'https://raw.githubusercontent.com',
|
|
310
|
+
cache: {
|
|
311
|
+
enabled: true,
|
|
312
|
+
ttl: 86400000,
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
// Configuration for accessing GitHub releases.
|
|
316
|
+
githubRelease: {
|
|
317
|
+
host: 'https://github.com',
|
|
318
|
+
cache: {
|
|
319
|
+
enabled: true,
|
|
320
|
+
ttl: 86400000,
|
|
321
|
+
},
|
|
322
|
+
},
|
|
323
|
+
},
|
|
324
|
+
|
|
325
|
+
// ---------------------------------------------------------------------------
|
|
326
|
+
// Downloader Settings
|
|
327
|
+
// ---------------------------------------------------------------------------
|
|
328
|
+
downloader: {
|
|
329
|
+
// Timeout in milliseconds for download operations.
|
|
330
|
+
// (number, default: 300000, i.e., 5 minutes)
|
|
331
|
+
timeout: 300000,
|
|
332
|
+
// Number of retry attempts for failed downloads.
|
|
333
|
+
// (number, default: 3)
|
|
334
|
+
retryCount: 3,
|
|
335
|
+
// Delay in milliseconds between download retry attempts.
|
|
336
|
+
// (number, default: 1000)
|
|
337
|
+
retryDelay: 1000,
|
|
338
|
+
// Caching for downloaded files.
|
|
339
|
+
cache: {
|
|
340
|
+
enabled: true,
|
|
341
|
+
ttl: 86400000, // 24 hours in ms
|
|
342
|
+
},
|
|
343
|
+
},
|
|
344
|
+
|
|
345
|
+
// ---------------------------------------------------------------------------
|
|
346
|
+
// Platform-Specific Overrides
|
|
347
|
+
// ---------------------------------------------------------------------------
|
|
348
|
+
platform: [
|
|
349
|
+
{
|
|
350
|
+
// An array of platform/architecture matchers.
|
|
351
|
+
match: [
|
|
352
|
+
{ os: 'macos', arch: 'arm64' },
|
|
353
|
+
],
|
|
354
|
+
// The configuration overrides for this platform/architecture combination.
|
|
355
|
+
// You can override any of the settings defined above.
|
|
356
|
+
config: {
|
|
357
|
+
paths: {
|
|
358
|
+
dotfilesDir: '~/macos-dotfiles',
|
|
359
|
+
},
|
|
360
|
+
},
|
|
361
|
+
},
|
|
362
|
+
],
|
|
363
|
+
}));
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
## Development
|
|
367
|
+
|
|
368
|
+
```bash
|
|
369
|
+
# Run all tests (fast parallel runner)
|
|
370
|
+
bun test:all
|
|
371
|
+
|
|
372
|
+
# Run tests with native bun test runner (accepts bun test arguments)
|
|
373
|
+
bun test:native
|
|
374
|
+
|
|
375
|
+
# Lint and format the codebase
|
|
376
|
+
bun lint
|
|
377
|
+
|
|
378
|
+
# Type-check
|
|
379
|
+
bun typecheck
|
|
380
|
+
|
|
381
|
+
# Full check (lint + typecheck + test)
|
|
382
|
+
bun check
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
### Development HTTP Proxy
|
|
386
|
+
|
|
387
|
+
To avoid rate limiting during development, you can use the built-in HTTP caching proxy:
|
|
388
|
+
|
|
389
|
+
```bash
|
|
390
|
+
# Start the proxy server (default port 3128)
|
|
391
|
+
bun proxy
|
|
392
|
+
|
|
393
|
+
# Run CLI commands through the proxy
|
|
394
|
+
DEV_PROXY=3128 bun cli install bat
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
The proxy caches all HTTP responses locally, ignoring server cache headers. This is useful when repeatedly testing installations against GitHub or other APIs. See [packages/http-proxy/README.md](packages/http-proxy/README.md) for full documentation.
|
package/cli-fj2hdbnx.js
ADDED
package/cli-w822cqdk.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var p,V,l,qW,g,i,u,n,WW,f,s,y,XW,m={},_=[],EW=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,C=Array.isArray;function F(X,W){for(var Y in W)X[Y]=W[Y];return X}function a(X){X&&X.parentNode&&X.parentNode.removeChild(X)}function JW(X,W,Y){var G,Q,Z,U={};for(Z in W)Z=="key"?G=W[Z]:Z=="ref"?Q=W[Z]:U[Z]=W[Z];if(arguments.length>2&&(U.children=arguments.length>3?p.call(arguments,2):Y),typeof X=="function"&&X.defaultProps!=null)for(Z in X.defaultProps)U[Z]===void 0&&(U[Z]=X.defaultProps[Z]);return $(X,U,G,Q,null)}function $(X,W,Y,G,Q){var Z={type:X,props:W,key:Y,ref:G,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:Q==null?++l:Q,__i:-1,__u:0};return Q==null&&V.vnode!=null&&V.vnode(Z),Z}function S(X){return X.children}function b(X,W){this.props=X,this.context=W}function M(X,W){if(W==null)return X.__?M(X.__,X.__i+1):null;for(var Y;W<X.__k.length;W++)if((Y=X.__k[W])!=null&&Y.__e!=null)return Y.__e;return typeof X.type=="function"?M(X):null}function KW(X){if(X.__P&&X.__d){var W=X.__v,Y=W.__e,G=[],Q=[],Z=F({},W);Z.__v=W.__v+1,V.vnode&&V.vnode(Z),r(X.__P,Z,W,X.__n,X.__P.namespaceURI,32&W.__u?[Y]:null,G,Y==null?M(W):Y,!!(32&W.__u),Q),Z.__v=W.__v,Z.__.__k[Z.__i]=Z,GW(G,Z,Q),W.__e=W.__=null,Z.__e!=Y&&YW(Z)}}function YW(X){if((X=X.__)!=null&&X.__c!=null)return X.__e=X.__c.base=null,X.__k.some(function(W){if(W!=null&&W.__e!=null)return X.__e=X.__c.base=W.__e}),YW(X)}function w(X){(!X.__d&&(X.__d=!0)&&g.push(X)&&!k.__r++||i!=V.debounceRendering)&&((i=V.debounceRendering)||u)(k)}function k(){for(var X,W=1;g.length;)g.length>W&&g.sort(n),X=g.shift(),W=g.length,KW(X);k.__r=0}function ZW(X,W,Y,G,Q,Z,U,E,O,q,K){var B,j,J,z,D,A,R,P=G&&G.__k||_,H=W.length;for(O=OW(Y,W,P,O,H),B=0;B<H;B++)(J=Y.__k[B])!=null&&(j=J.__i!=-1&&P[J.__i]||m,J.__i=B,A=r(X,J,j,Q,Z,U,E,O,q,K),z=J.__e,J.ref&&j.ref!=J.ref&&(j.ref&&e(j.ref,null,J),K.push(J.ref,J.__c||z,J)),D==null&&z!=null&&(D=z),(R=!!(4&J.__u))||j.__k===J.__k?O=BW(J,O,X,R):typeof J.type=="function"&&A!==void 0?O=A:z&&(O=z.nextSibling),J.__u&=-7);return Y.__e=D,O}function OW(X,W,Y,G,Q){var Z,U,E,O,q,K=Y.length,B=K,j=0;for(X.__k=Array(Q),Z=0;Z<Q;Z++)(U=W[Z])!=null&&typeof U!="boolean"&&typeof U!="function"?(typeof U=="string"||typeof U=="number"||typeof U=="bigint"||U.constructor==String?U=X.__k[Z]=$(null,U,null,null,null):C(U)?U=X.__k[Z]=$(S,{children:U},null,null,null):U.constructor===void 0&&U.__b>0?U=X.__k[Z]=$(U.type,U.props,U.key,U.ref?U.ref:null,U.__v):X.__k[Z]=U,O=Z+j,U.__=X,U.__b=X.__b+1,E=null,(q=U.__i=RW(U,Y,O,B))!=-1&&(B--,(E=Y[q])&&(E.__u|=2)),E==null||E.__v==null?(q==-1&&(Q>K?j--:Q<K&&j++),typeof U.type!="function"&&(U.__u|=4)):q!=O&&(q==O-1?j--:q==O+1?j++:(q>O?j--:j++,U.__u|=4))):X.__k[Z]=null;if(B)for(Z=0;Z<K;Z++)(E=Y[Z])!=null&&(2&E.__u)==0&&(E.__e==G&&(G=M(E)),UW(E,E));return G}function BW(X,W,Y,G){var Q,Z;if(typeof X.type=="function"){for(Q=X.__k,Z=0;Q&&Z<Q.length;Z++)Q[Z]&&(Q[Z].__=X,W=BW(Q[Z],W,Y,G));return W}X.__e!=W&&(G&&(W&&X.type&&!W.parentNode&&(W=M(X)),Y.insertBefore(X.__e,W||null)),W=X.__e);do W=W&&W.nextSibling;while(W!=null&&W.nodeType==8);return W}function PW(X,W){return W=W||[],X==null||typeof X=="boolean"||(C(X)?X.some(function(Y){PW(Y,W)}):W.push(X)),W}function RW(X,W,Y,G){var Q,Z,U,E=X.key,O=X.type,q=W[Y],K=q!=null&&(2&q.__u)==0;if(q===null&&E==null||K&&E==q.key&&O==q.type)return Y;if(G>(K?1:0)){for(Q=Y-1,Z=Y+1;Q>=0||Z<W.length;)if((q=W[U=Q>=0?Q--:Z++])!=null&&(2&q.__u)==0&&E==q.key&&O==q.type)return U}return-1}function o(X,W,Y){W[0]=="-"?X.setProperty(W,Y==null?"":Y):X[W]=Y==null?"":typeof Y!="number"||EW.test(W)?Y:Y+"px"}function d(X,W,Y,G,Q){var Z,U;W:if(W=="style")if(typeof Y=="string")X.style.cssText=Y;else{if(typeof G=="string"&&(X.style.cssText=G=""),G)for(W in G)Y&&W in Y||o(X.style,W,"");if(Y)for(W in Y)G&&Y[W]==G[W]||o(X.style,W,Y[W])}else if(W[0]=="o"&&W[1]=="n")Z=W!=(W=W.replace(WW,"$1")),U=W.toLowerCase(),W=U in X||W=="onFocusOut"||W=="onFocusIn"?U.slice(2):W.slice(2),X.l||(X.l={}),X.l[W+Z]=Y,Y?G?Y.u=G.u:(Y.u=f,X.addEventListener(W,Z?y:s,Z)):X.removeEventListener(W,Z?y:s,Z);else{if(Q=="http://www.w3.org/2000/svg")W=W.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(W!="width"&&W!="height"&&W!="href"&&W!="list"&&W!="form"&&W!="tabIndex"&&W!="download"&&W!="rowSpan"&&W!="colSpan"&&W!="role"&&W!="popover"&&W in X)try{X[W]=Y==null?"":Y;break W}catch(E){}typeof Y=="function"||(Y==null||Y===!1&&W[4]!="-"?X.removeAttribute(W):X.setAttribute(W,W=="popover"&&Y==1?"":Y))}}function t(X){return function(W){if(this.l){var Y=this.l[W.type+X];if(W.t==null)W.t=f++;else if(W.t<Y.u)return;return Y(V.event?V.event(W):W)}}}function r(X,W,Y,G,Q,Z,U,E,O,q){var K,B,j,J,z,D,A,R,P,H,L,I,h,T,x,N=W.type;if(W.constructor!==void 0)return null;128&Y.__u&&(O=!!(32&Y.__u),Z=[E=W.__e=Y.__e]),(K=V.__b)&&K(W);W:if(typeof N=="function")try{if(R=W.props,P="prototype"in N&&N.prototype.render,H=(K=N.contextType)&&G[K.__c],L=K?H?H.props.value:K.__:G,Y.__c?A=(B=W.__c=Y.__c).__=B.__E:(P?W.__c=B=new N(R,L):(W.__c=B=new b(R,L),B.constructor=N,B.render=jW),H&&H.sub(B),B.state||(B.state={}),B.__n=G,j=B.__d=!0,B.__h=[],B._sb=[]),P&&B.__s==null&&(B.__s=B.state),P&&N.getDerivedStateFromProps!=null&&(B.__s==B.state&&(B.__s=F({},B.__s)),F(B.__s,N.getDerivedStateFromProps(R,B.__s))),J=B.props,z=B.state,B.__v=W,j)P&&N.getDerivedStateFromProps==null&&B.componentWillMount!=null&&B.componentWillMount(),P&&B.componentDidMount!=null&&B.__h.push(B.componentDidMount);else{if(P&&N.getDerivedStateFromProps==null&&R!==J&&B.componentWillReceiveProps!=null&&B.componentWillReceiveProps(R,L),W.__v==Y.__v||!B.__e&&B.shouldComponentUpdate!=null&&B.shouldComponentUpdate(R,B.__s,L)===!1){W.__v!=Y.__v&&(B.props=R,B.state=B.__s,B.__d=!1),W.__e=Y.__e,W.__k=Y.__k,W.__k.some(function(v){v&&(v.__=W)}),_.push.apply(B.__h,B._sb),B._sb=[],B.__h.length&&U.push(B);break W}B.componentWillUpdate!=null&&B.componentWillUpdate(R,B.__s,L),P&&B.componentDidUpdate!=null&&B.__h.push(function(){B.componentDidUpdate(J,z,D)})}if(B.context=L,B.props=R,B.__P=X,B.__e=!1,I=V.__r,h=0,P)B.state=B.__s,B.__d=!1,I&&I(W),K=B.render(B.props,B.state,B.context),_.push.apply(B.__h,B._sb),B._sb=[];else do B.__d=!1,I&&I(W),K=B.render(B.props,B.state,B.context),B.state=B.__s;while(B.__d&&++h<25);B.state=B.__s,B.getChildContext!=null&&(G=F(F({},G),B.getChildContext())),P&&!j&&B.getSnapshotBeforeUpdate!=null&&(D=B.getSnapshotBeforeUpdate(J,z)),T=K!=null&&K.type===S&&K.key==null?QW(K.props.children):K,E=ZW(X,C(T)?T:[T],W,Y,G,Q,Z,U,E,O,q),B.base=W.__e,W.__u&=-161,B.__h.length&&U.push(B),A&&(B.__E=B.__=null)}catch(v){if(W.__v=null,O||Z!=null)if(v.then){for(W.__u|=O?160:128;E&&E.nodeType==8&&E.nextSibling;)E=E.nextSibling;Z[Z.indexOf(E)]=null,W.__e=E}else{for(x=Z.length;x--;)a(Z[x]);c(W)}else W.__e=Y.__e,W.__k=Y.__k,v.then||c(W);V.__e(v,W,Y)}else Z==null&&W.__v==Y.__v?(W.__k=Y.__k,W.__e=Y.__e):E=W.__e=VW(Y.__e,W,Y,G,Q,Z,U,O,q);return(K=V.diffed)&&K(W),128&W.__u?void 0:E}function c(X){X&&(X.__c&&(X.__c.__e=!0),X.__k&&X.__k.some(c))}function GW(X,W,Y){for(var G=0;G<Y.length;G++)e(Y[G],Y[++G],Y[++G]);V.__c&&V.__c(W,X),X.some(function(Q){try{X=Q.__h,Q.__h=[],X.some(function(Z){Z.call(Q)})}catch(Z){V.__e(Z,Q.__v)}})}function QW(X){return typeof X!="object"||X==null||X.__b>0?X:C(X)?X.map(QW):F({},X)}function VW(X,W,Y,G,Q,Z,U,E,O){var q,K,B,j,J,z,D,A=Y.props||m,R=W.props,P=W.type;if(P=="svg"?Q="http://www.w3.org/2000/svg":P=="math"?Q="http://www.w3.org/1998/Math/MathML":Q||(Q="http://www.w3.org/1999/xhtml"),Z!=null){for(q=0;q<Z.length;q++)if((J=Z[q])&&"setAttribute"in J==!!P&&(P?J.localName==P:J.nodeType==3)){X=J,Z[q]=null;break}}if(X==null){if(P==null)return document.createTextNode(R);X=document.createElementNS(Q,P,R.is&&R),E&&(V.__m&&V.__m(W,Z),E=!1),Z=null}if(P==null)A===R||E&&X.data==R||(X.data=R);else{if(Z=Z&&p.call(X.childNodes),!E&&Z!=null)for(A={},q=0;q<X.attributes.length;q++)A[(J=X.attributes[q]).name]=J.value;for(q in A)J=A[q],q=="dangerouslySetInnerHTML"?B=J:q=="children"||(q in R)||q=="value"&&("defaultValue"in R)||q=="checked"&&("defaultChecked"in R)||d(X,q,null,J,Q);for(q in R)J=R[q],q=="children"?j=J:q=="dangerouslySetInnerHTML"?K=J:q=="value"?z=J:q=="checked"?D=J:E&&typeof J!="function"||A[q]===J||d(X,q,J,A[q],Q);if(K)E||B&&(K.__html==B.__html||K.__html==X.innerHTML)||(X.innerHTML=K.__html),W.__k=[];else if(B&&(X.innerHTML=""),ZW(W.type=="template"?X.content:X,C(j)?j:[j],W,Y,G,P=="foreignObject"?"http://www.w3.org/1999/xhtml":Q,Z,U,Z?Z[0]:Y.__k&&M(Y,0),E,O),Z!=null)for(q=Z.length;q--;)a(Z[q]);E||(q="value",P=="progress"&&z==null?X.removeAttribute("value"):z!=null&&(z!==X[q]||P=="progress"&&!z||P=="option"&&z!=A[q])&&d(X,q,z,A[q],Q),q="checked",D!=null&&D!=X[q]&&d(X,q,D,A[q],Q))}return X}function e(X,W,Y){try{if(typeof X=="function"){var G=typeof X.__u=="function";G&&X.__u(),G&&W==null||(X.__u=X(W))}else X.current=W}catch(Q){V.__e(Q,Y)}}function UW(X,W,Y){var G,Q;if(V.unmount&&V.unmount(X),(G=X.ref)&&(G.current&&G.current!=X.__e||e(G,null,W)),(G=X.__c)!=null){if(G.componentWillUnmount)try{G.componentWillUnmount()}catch(Z){V.__e(Z,W)}G.base=G.__P=null}if(G=X.__k)for(Q=0;Q<G.length;Q++)G[Q]&&UW(G[Q],W,Y||typeof X.type!="function");Y||a(X.__e),X.__c=X.__=X.__e=void 0}function jW(X,W,Y){return this.constructor(X,Y)}function zW(X,W,Y){var G,Q,Z,U;W==document&&(W=document.documentElement),V.__&&V.__(X,W),Q=(G=typeof Y=="function")?null:Y&&Y.__k||W.__k,Z=[],U=[],r(W,X=(!G&&Y||W).__k=JW(S,null,[X]),Q||m,m,W.namespaceURI,!G&&Y?[Y]:Q?null:W.firstChild?p.call(W.childNodes):null,Z,!G&&Y?Y:Q?Q.__e:W.firstChild,G,U),GW(Z,X,U)}function AW(X,W){zW(X,W,AW)}function DW(X,W,Y){var G,Q,Z,U,E=F({},X.props);for(Z in X.type&&X.type.defaultProps&&(U=X.type.defaultProps),W)Z=="key"?G=W[Z]:Z=="ref"?Q=W[Z]:E[Z]=W[Z]===void 0&&U!=null?U[Z]:W[Z];return arguments.length>2&&(E.children=arguments.length>3?p.call(arguments,2):Y),$(X.type,E,G||X.key,Q||X.ref,null)}function NW(X){function W(Y){var G,Q;return this.getChildContext||(G=new Set,(Q={})[W.__c]=this,this.getChildContext=function(){return Q},this.componentWillUnmount=function(){G=null},this.shouldComponentUpdate=function(Z){this.props.value!=Z.value&&G.forEach(function(U){U.__e=!0,w(U)})},this.sub=function(Z){G.add(Z);var U=Z.componentWillUnmount;Z.componentWillUnmount=function(){G&&G.delete(Z),U&&U.call(Z)}}),Y.children}return W.__c="__cC"+XW++,W.__=X,W.Provider=W.__l=(W.Consumer=function(Y,G){return Y.children(G)}).contextType=W,W}p=_.slice,V={__e:function(X,W,Y,G){for(var Q,Z,U;W=W.__;)if((Q=W.__c)&&!Q.__)try{if((Z=Q.constructor)&&Z.getDerivedStateFromError!=null&&(Q.setState(Z.getDerivedStateFromError(X)),U=Q.__d),Q.componentDidCatch!=null&&(Q.componentDidCatch(X,G||{}),U=Q.__d),U)return Q.__E=Q}catch(E){X=E}throw X}},l=0,qW=function(X){return X!=null&&X.constructor===void 0},b.prototype.setState=function(X,W){var Y;Y=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=F({},this.state),typeof X=="function"&&(X=X(F({},Y),this.props)),X&&F(Y,X),X!=null&&this.__v&&(W&&this._sb.push(W),w(this))},b.prototype.forceUpdate=function(X){this.__v&&(this.__e=!0,X&&this.__h.push(X),w(this))},b.prototype.render=S,g=[],u=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,n=function(X,W){return X.__v.__b-W.__v.__b},k.__r=0,WW=/(PointerCapture)$|Capture$/i,f=0,s=t(!1),y=t(!0),XW=0;
|
|
2
|
+
export{V as a,JW as b,S as c,b as d,PW as e,AW as f,DW as g,NW as h};
|
|
3
|
+
|
|
4
|
+
//# debugId=1ED43A5E2C954A2164756E2164756E21
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../node_modules/.bun/preact@10.28.4/node_modules/preact/dist/preact.module.js"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"var n,l,u,t,i,r,o,e,f,c,s,a,h,p={},v=[],y=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,d=Array.isArray;function w(n,l){for(var u in l)n[u]=l[u];return n}function g(n){n&&n.parentNode&&n.parentNode.removeChild(n)}function _(l,u,t){var i,r,o,e={};for(o in u)\"key\"==o?i=u[o]:\"ref\"==o?r=u[o]:e[o]=u[o];if(arguments.length>2&&(e.children=arguments.length>3?n.call(arguments,2):t),\"function\"==typeof l&&null!=l.defaultProps)for(o in l.defaultProps)void 0===e[o]&&(e[o]=l.defaultProps[o]);return m(l,e,i,r,null)}function m(n,t,i,r,o){var e={type:n,props:t,key:i,ref:r,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:null==o?++u:o,__i:-1,__u:0};return null==o&&null!=l.vnode&&l.vnode(e),e}function b(){return{current:null}}function k(n){return n.children}function x(n,l){this.props=n,this.context=l}function S(n,l){if(null==l)return n.__?S(n.__,n.__i+1):null;for(var u;l<n.__k.length;l++)if(null!=(u=n.__k[l])&&null!=u.__e)return u.__e;return\"function\"==typeof n.type?S(n):null}function C(n){if(n.__P&&n.__d){var u=n.__v,t=u.__e,i=[],r=[],o=w({},u);o.__v=u.__v+1,l.vnode&&l.vnode(o),z(n.__P,o,u,n.__n,n.__P.namespaceURI,32&u.__u?[t]:null,i,null==t?S(u):t,!!(32&u.__u),r),o.__v=u.__v,o.__.__k[o.__i]=o,V(i,o,r),u.__e=u.__=null,o.__e!=t&&M(o)}}function M(n){if(null!=(n=n.__)&&null!=n.__c)return n.__e=n.__c.base=null,n.__k.some(function(l){if(null!=l&&null!=l.__e)return n.__e=n.__c.base=l.__e}),M(n)}function $(n){(!n.__d&&(n.__d=!0)&&i.push(n)&&!I.__r++||r!=l.debounceRendering)&&((r=l.debounceRendering)||o)(I)}function I(){for(var n,l=1;i.length;)i.length>l&&i.sort(e),n=i.shift(),l=i.length,C(n);I.__r=0}function P(n,l,u,t,i,r,o,e,f,c,s){var a,h,y,d,w,g,_,m=t&&t.__k||v,b=l.length;for(f=A(u,l,m,f,b),a=0;a<b;a++)null!=(y=u.__k[a])&&(h=-1!=y.__i&&m[y.__i]||p,y.__i=a,g=z(n,y,h,i,r,o,e,f,c,s),d=y.__e,y.ref&&h.ref!=y.ref&&(h.ref&&D(h.ref,null,y),s.push(y.ref,y.__c||d,y)),null==w&&null!=d&&(w=d),(_=!!(4&y.__u))||h.__k===y.__k?f=H(y,f,n,_):\"function\"==typeof y.type&&void 0!==g?f=g:d&&(f=d.nextSibling),y.__u&=-7);return u.__e=w,f}function A(n,l,u,t,i){var r,o,e,f,c,s=u.length,a=s,h=0;for(n.__k=new Array(i),r=0;r<i;r++)null!=(o=l[r])&&\"boolean\"!=typeof o&&\"function\"!=typeof o?(\"string\"==typeof o||\"number\"==typeof o||\"bigint\"==typeof o||o.constructor==String?o=n.__k[r]=m(null,o,null,null,null):d(o)?o=n.__k[r]=m(k,{children:o},null,null,null):void 0===o.constructor&&o.__b>0?o=n.__k[r]=m(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):n.__k[r]=o,f=r+h,o.__=n,o.__b=n.__b+1,e=null,-1!=(c=o.__i=T(o,u,f,a))&&(a--,(e=u[c])&&(e.__u|=2)),null==e||null==e.__v?(-1==c&&(i>s?h--:i<s&&h++),\"function\"!=typeof o.type&&(o.__u|=4)):c!=f&&(c==f-1?h--:c==f+1?h++:(c>f?h--:h++,o.__u|=4))):n.__k[r]=null;if(a)for(r=0;r<s;r++)null!=(e=u[r])&&0==(2&e.__u)&&(e.__e==t&&(t=S(e)),E(e,e));return t}function H(n,l,u,t){var i,r;if(\"function\"==typeof n.type){for(i=n.__k,r=0;i&&r<i.length;r++)i[r]&&(i[r].__=n,l=H(i[r],l,u,t));return l}n.__e!=l&&(t&&(l&&n.type&&!l.parentNode&&(l=S(n)),u.insertBefore(n.__e,l||null)),l=n.__e);do{l=l&&l.nextSibling}while(null!=l&&8==l.nodeType);return l}function L(n,l){return l=l||[],null==n||\"boolean\"==typeof n||(d(n)?n.some(function(n){L(n,l)}):l.push(n)),l}function T(n,l,u,t){var i,r,o,e=n.key,f=n.type,c=l[u],s=null!=c&&0==(2&c.__u);if(null===c&&null==e||s&&e==c.key&&f==c.type)return u;if(t>(s?1:0))for(i=u-1,r=u+1;i>=0||r<l.length;)if(null!=(c=l[o=i>=0?i--:r++])&&0==(2&c.__u)&&e==c.key&&f==c.type)return o;return-1}function j(n,l,u){\"-\"==l[0]?n.setProperty(l,null==u?\"\":u):n[l]=null==u?\"\":\"number\"!=typeof u||y.test(l)?u:u+\"px\"}function F(n,l,u,t,i){var r,o;n:if(\"style\"==l)if(\"string\"==typeof u)n.style.cssText=u;else{if(\"string\"==typeof t&&(n.style.cssText=t=\"\"),t)for(l in t)u&&l in u||j(n.style,l,\"\");if(u)for(l in u)t&&u[l]==t[l]||j(n.style,l,u[l])}else if(\"o\"==l[0]&&\"n\"==l[1])r=l!=(l=l.replace(f,\"$1\")),o=l.toLowerCase(),l=o in n||\"onFocusOut\"==l||\"onFocusIn\"==l?o.slice(2):l.slice(2),n.l||(n.l={}),n.l[l+r]=u,u?t?u.u=t.u:(u.u=c,n.addEventListener(l,r?a:s,r)):n.removeEventListener(l,r?a:s,r);else{if(\"http://www.w3.org/2000/svg\"==i)l=l.replace(/xlink(H|:h)/,\"h\").replace(/sName$/,\"s\");else if(\"width\"!=l&&\"height\"!=l&&\"href\"!=l&&\"list\"!=l&&\"form\"!=l&&\"tabIndex\"!=l&&\"download\"!=l&&\"rowSpan\"!=l&&\"colSpan\"!=l&&\"role\"!=l&&\"popover\"!=l&&l in n)try{n[l]=null==u?\"\":u;break n}catch(n){}\"function\"==typeof u||(null==u||!1===u&&\"-\"!=l[4]?n.removeAttribute(l):n.setAttribute(l,\"popover\"==l&&1==u?\"\":u))}}function O(n){return function(u){if(this.l){var t=this.l[u.type+n];if(null==u.t)u.t=c++;else if(u.t<t.u)return;return t(l.event?l.event(u):u)}}}function z(n,u,t,i,r,o,e,f,c,s){var a,h,p,y,_,m,b,S,C,M,$,I,A,H,L,T=u.type;if(void 0!==u.constructor)return null;128&t.__u&&(c=!!(32&t.__u),o=[f=u.__e=t.__e]),(a=l.__b)&&a(u);n:if(\"function\"==typeof T)try{if(S=u.props,C=\"prototype\"in T&&T.prototype.render,M=(a=T.contextType)&&i[a.__c],$=a?M?M.props.value:a.__:i,t.__c?b=(h=u.__c=t.__c).__=h.__E:(C?u.__c=h=new T(S,$):(u.__c=h=new x(S,$),h.constructor=T,h.render=G),M&&M.sub(h),h.state||(h.state={}),h.__n=i,p=h.__d=!0,h.__h=[],h._sb=[]),C&&null==h.__s&&(h.__s=h.state),C&&null!=T.getDerivedStateFromProps&&(h.__s==h.state&&(h.__s=w({},h.__s)),w(h.__s,T.getDerivedStateFromProps(S,h.__s))),y=h.props,_=h.state,h.__v=u,p)C&&null==T.getDerivedStateFromProps&&null!=h.componentWillMount&&h.componentWillMount(),C&&null!=h.componentDidMount&&h.__h.push(h.componentDidMount);else{if(C&&null==T.getDerivedStateFromProps&&S!==y&&null!=h.componentWillReceiveProps&&h.componentWillReceiveProps(S,$),u.__v==t.__v||!h.__e&&null!=h.shouldComponentUpdate&&!1===h.shouldComponentUpdate(S,h.__s,$)){u.__v!=t.__v&&(h.props=S,h.state=h.__s,h.__d=!1),u.__e=t.__e,u.__k=t.__k,u.__k.some(function(n){n&&(n.__=u)}),v.push.apply(h.__h,h._sb),h._sb=[],h.__h.length&&e.push(h);break n}null!=h.componentWillUpdate&&h.componentWillUpdate(S,h.__s,$),C&&null!=h.componentDidUpdate&&h.__h.push(function(){h.componentDidUpdate(y,_,m)})}if(h.context=$,h.props=S,h.__P=n,h.__e=!1,I=l.__r,A=0,C)h.state=h.__s,h.__d=!1,I&&I(u),a=h.render(h.props,h.state,h.context),v.push.apply(h.__h,h._sb),h._sb=[];else do{h.__d=!1,I&&I(u),a=h.render(h.props,h.state,h.context),h.state=h.__s}while(h.__d&&++A<25);h.state=h.__s,null!=h.getChildContext&&(i=w(w({},i),h.getChildContext())),C&&!p&&null!=h.getSnapshotBeforeUpdate&&(m=h.getSnapshotBeforeUpdate(y,_)),H=null!=a&&a.type===k&&null==a.key?q(a.props.children):a,f=P(n,d(H)?H:[H],u,t,i,r,o,e,f,c,s),h.base=u.__e,u.__u&=-161,h.__h.length&&e.push(h),b&&(h.__E=h.__=null)}catch(n){if(u.__v=null,c||null!=o)if(n.then){for(u.__u|=c?160:128;f&&8==f.nodeType&&f.nextSibling;)f=f.nextSibling;o[o.indexOf(f)]=null,u.__e=f}else{for(L=o.length;L--;)g(o[L]);N(u)}else u.__e=t.__e,u.__k=t.__k,n.then||N(u);l.__e(n,u,t)}else null==o&&u.__v==t.__v?(u.__k=t.__k,u.__e=t.__e):f=u.__e=B(t.__e,u,t,i,r,o,e,c,s);return(a=l.diffed)&&a(u),128&u.__u?void 0:f}function N(n){n&&(n.__c&&(n.__c.__e=!0),n.__k&&n.__k.some(N))}function V(n,u,t){for(var i=0;i<t.length;i++)D(t[i],t[++i],t[++i]);l.__c&&l.__c(u,n),n.some(function(u){try{n=u.__h,u.__h=[],n.some(function(n){n.call(u)})}catch(n){l.__e(n,u.__v)}})}function q(n){return\"object\"!=typeof n||null==n||n.__b>0?n:d(n)?n.map(q):w({},n)}function B(u,t,i,r,o,e,f,c,s){var a,h,v,y,w,_,m,b=i.props||p,k=t.props,x=t.type;if(\"svg\"==x?o=\"http://www.w3.org/2000/svg\":\"math\"==x?o=\"http://www.w3.org/1998/Math/MathML\":o||(o=\"http://www.w3.org/1999/xhtml\"),null!=e)for(a=0;a<e.length;a++)if((w=e[a])&&\"setAttribute\"in w==!!x&&(x?w.localName==x:3==w.nodeType)){u=w,e[a]=null;break}if(null==u){if(null==x)return document.createTextNode(k);u=document.createElementNS(o,x,k.is&&k),c&&(l.__m&&l.__m(t,e),c=!1),e=null}if(null==x)b===k||c&&u.data==k||(u.data=k);else{if(e=e&&n.call(u.childNodes),!c&&null!=e)for(b={},a=0;a<u.attributes.length;a++)b[(w=u.attributes[a]).name]=w.value;for(a in b)w=b[a],\"dangerouslySetInnerHTML\"==a?v=w:\"children\"==a||a in k||\"value\"==a&&\"defaultValue\"in k||\"checked\"==a&&\"defaultChecked\"in k||F(u,a,null,w,o);for(a in k)w=k[a],\"children\"==a?y=w:\"dangerouslySetInnerHTML\"==a?h=w:\"value\"==a?_=w:\"checked\"==a?m=w:c&&\"function\"!=typeof w||b[a]===w||F(u,a,w,b[a],o);if(h)c||v&&(h.__html==v.__html||h.__html==u.innerHTML)||(u.innerHTML=h.__html),t.__k=[];else if(v&&(u.innerHTML=\"\"),P(\"template\"==t.type?u.content:u,d(y)?y:[y],t,i,r,\"foreignObject\"==x?\"http://www.w3.org/1999/xhtml\":o,e,f,e?e[0]:i.__k&&S(i,0),c,s),null!=e)for(a=e.length;a--;)g(e[a]);c||(a=\"value\",\"progress\"==x&&null==_?u.removeAttribute(\"value\"):null!=_&&(_!==u[a]||\"progress\"==x&&!_||\"option\"==x&&_!=b[a])&&F(u,a,_,b[a],o),a=\"checked\",null!=m&&m!=u[a]&&F(u,a,m,b[a],o))}return u}function D(n,u,t){try{if(\"function\"==typeof n){var i=\"function\"==typeof n.__u;i&&n.__u(),i&&null==u||(n.__u=n(u))}else n.current=u}catch(n){l.__e(n,t)}}function E(n,u,t){var i,r;if(l.unmount&&l.unmount(n),(i=n.ref)&&(i.current&&i.current!=n.__e||D(i,null,u)),null!=(i=n.__c)){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(n){l.__e(n,u)}i.base=i.__P=null}if(i=n.__k)for(r=0;r<i.length;r++)i[r]&&E(i[r],u,t||\"function\"!=typeof n.type);t||g(n.__e),n.__c=n.__=n.__e=void 0}function G(n,l,u){return this.constructor(n,u)}function J(u,t,i){var r,o,e,f;t==document&&(t=document.documentElement),l.__&&l.__(u,t),o=(r=\"function\"==typeof i)?null:i&&i.__k||t.__k,e=[],f=[],z(t,u=(!r&&i||t).__k=_(k,null,[u]),o||p,p,t.namespaceURI,!r&&i?[i]:o?null:t.firstChild?n.call(t.childNodes):null,e,!r&&i?i:o?o.__e:t.firstChild,r,f),V(e,u,f)}function K(n,l){J(n,l,K)}function Q(l,u,t){var i,r,o,e,f=w({},l.props);for(o in l.type&&l.type.defaultProps&&(e=l.type.defaultProps),u)\"key\"==o?i=u[o]:\"ref\"==o?r=u[o]:f[o]=void 0===u[o]&&null!=e?e[o]:u[o];return arguments.length>2&&(f.children=arguments.length>3?n.call(arguments,2):t),m(l.type,f,i||l.key,r||l.ref,null)}function R(n){function l(n){var u,t;return this.getChildContext||(u=new Set,(t={})[l.__c]=this,this.getChildContext=function(){return t},this.componentWillUnmount=function(){u=null},this.shouldComponentUpdate=function(n){this.props.value!=n.value&&u.forEach(function(n){n.__e=!0,$(n)})},this.sub=function(n){u.add(n);var l=n.componentWillUnmount;n.componentWillUnmount=function(){u&&u.delete(n),l&&l.call(n)}}),n.children}return l.__c=\"__cC\"+h++,l.__=n,l.Provider=l.__l=(l.Consumer=function(n,l){return n.children(l)}).contextType=l,l}n=v.slice,l={__e:function(n,l,u,t){for(var i,r,o;l=l.__;)if((i=l.__c)&&!i.__)try{if((r=i.constructor)&&null!=r.getDerivedStateFromError&&(i.setState(r.getDerivedStateFromError(n)),o=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),o=i.__d),o)return i.__E=i}catch(l){n=l}throw n}},u=0,t=function(n){return null!=n&&void 0===n.constructor},x.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!=this.state?this.__s:this.__s=w({},this.state),\"function\"==typeof n&&(n=n(w({},u),this.props)),n&&w(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),$(this))},x.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),$(this))},x.prototype.render=k,i=[],o=\"function\"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,e=function(n,l){return n.__v.__b-l.__v.__b},I.__r=0,f=/(PointerCapture)$|Capture$/i,c=0,s=O(!1),a=O(!0),h=0;export{x as Component,k as Fragment,Q as cloneElement,R as createContext,_ as createElement,b as createRef,_ as h,K as hydrate,t as isValidElement,l as options,J as render,L as toChildArray};\n//# sourceMappingURL=preact.module.js.map\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": "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",
|
|
8
|
+
"debugId": "1ED43A5E2C954A2164756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|