Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scripts/build/copy-version-module.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env node

// SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
// SPDX-License-Identifier: MIT
// SPDX-PackageName: weave-claude-plugin

/**
* Keep the runtime version module available after TypeScript compilation.
*
Expand Down
4 changes: 4 additions & 0 deletions scripts/install-git-hooks.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
// SPDX-License-Identifier: MIT
// SPDX-PackageName: weave-claude-plugin

import { spawnSync } from 'node:child_process';

const result = spawnSync('git', ['config', 'core.hooksPath', '.githooks'], {
Expand Down
4 changes: 4 additions & 0 deletions scripts/release/bump-version.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env node

// SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
// SPDX-License-Identifier: MIT
// SPDX-PackageName: weave-claude-plugin

import fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import path from 'node:path';
Expand Down
4 changes: 4 additions & 0 deletions scripts/release/update-marketplace-sha.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env node

// SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
// SPDX-License-Identifier: MIT
// SPDX-PackageName: weave-claude-plugin

import fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import path from 'node:path';
Expand Down
4 changes: 4 additions & 0 deletions scripts/release/version-module-utils.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
// SPDX-License-Identifier: MIT
// SPDX-PackageName: weave-claude-plugin

import fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import path from 'node:path';
Expand Down
Loading