From 47c6d988a508da8888838d61bbb6bf6fe2a5aba2 Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Tue, 12 Aug 2025 14:43:08 -0500 Subject: [PATCH 1/3] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Fix=20bad=20URLs=20to?= =?UTF-8?q?=20GitHub=20repo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- docs/api-reference.md | 2 +- package.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 157f3b04..2d08579d 100644 --- a/README.md +++ b/README.md @@ -331,7 +331,7 @@ We welcome contributions! Whether you're fixing bugs, adding features, or improv ### Getting Started -1. Fork the repository on [GitHub](https://github.com/vizzly/cli) +1. Fork the repository on [GitHub](https://github.com/vizzly-testing/cli) 2. Clone your fork locally: `git clone https://github.com/your-username/cli.git` 3. Install dependencies: `npm install` 4. Run tests to ensure everything works: `npm test` @@ -348,7 +348,7 @@ We welcome contributions! Whether you're fixing bugs, adding features, or improv ### Reporting Issues -Found a bug or have a feature request? Please [open an issue](https://github.com/vizzly/cli/issues) with: +Found a bug or have a feature request? Please [open an issue](https://github.com/vizzly-testing/cli/issues) with: - A clear description of the problem or request - Steps to reproduce (for bugs) diff --git a/docs/api-reference.md b/docs/api-reference.md index 4bf6c656..daffe900 100644 --- a/docs/api-reference.md +++ b/docs/api-reference.md @@ -600,4 +600,4 @@ For additional help: - Check [Getting Started Guide](./getting-started.md) - Review [Test Integration Guide](./test-integration.md) - Explore [TDD Mode Guide](./tdd-mode.md) -- Report issues at [GitHub Issues](https://github.com/vizzly/cli/issues) +- Report issues at [GitHub Issues](https://github.com/vizzly-testing/cli/issues) diff --git a/package.json b/package.json index cb788c6f..7ba3885a 100644 --- a/package.json +++ b/package.json @@ -13,10 +13,10 @@ "cli" ], "homepage": "https://vizzly.dev", - "bugs": "https://github.com/vizzly/cli/issues", + "bugs": "https://github.com/vizzly-testing/cli/issues", "repository": { "type": "git", - "url": "https://github.com/vizzly/cli.git" + "url": "https://github.com/vizzly-testing/cli.git" }, "license": "MIT", "author": "Stubborn Mule Software ", From 1a49f781df601a012d65fb8516847d4348bd49ba Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Tue, 12 Aug 2025 17:18:50 -0500 Subject: [PATCH 2/3] =?UTF-8?q?=E2=9C=A8=20Add=20npmignore=20file,=20reduc?= =?UTF-8?q?e=20release=20size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmignore | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 1 + 2 files changed, 92 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..d58b7dde --- /dev/null +++ b/.npmignore @@ -0,0 +1,91 @@ +# Development files +src/ +tests/ +coverage/ +node_modules/ +scripts/ + +# Build artifacts +*.tgz +.nyc_output/ + +# Configuration files +.eslintrc* +.prettierrc* +eslint.config.js +babel.config.json +tsconfig.json +vitest.config.js +vizzly.config.js + +# Git files +.git/ +.gitignore +.gitattributes + +# CI/CD +.github/ +.travis.yml +.circleci/ +.jenkins/ + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +Thumbs.db + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids/ +*.pid +*.seed +*.pid.lock + +# Coverage directory used by tools like istanbul +coverage/ +.nyc_output/ + +# Dependency directories +node_modules/ + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Keep these files (explicitly not ignored): +# README.md - documentation +# LICENSE - license file +# docs/ - documentation folder +# dist/ - built files +# bin/ - executable scripts + +# Ensure docs directory is included +!docs/ \ No newline at end of file diff --git a/package.json b/package.json index 7ba3885a..ca43aa15 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "files": [ "bin", "dist", + "docs", "README.md", "LICENSE" ], From 01f3679460e25b1a80c7198454480703bde2ea51 Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Tue, 12 Aug 2025 17:28:53 -0500 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9C=85=20Fix=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shouldn't have ever been using port 8080 --- tests/integration/cli-options.spec.js | 10 ++++++++-- tests/integration/tdd-command.spec.js | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/integration/cli-options.spec.js b/tests/integration/cli-options.spec.js index ed2977b6..15265ab7 100644 --- a/tests/integration/cli-options.spec.js +++ b/tests/integration/cli-options.spec.js @@ -165,7 +165,13 @@ describe('CLI Options Integration', () => { it('should handle port option parsing', async () => { const result = await runCLI( - ['run', 'echo "test successful"', '--port', '8080', '--allow-no-token'], + [ + 'run', + 'echo "test successful"', + '--port', + '47501', + '--allow-no-token', + ], { env: { CI: 'true' }, } @@ -258,7 +264,7 @@ describe('CLI Options Integration', () => { it('should handle port option parsing', async () => { const result = await runCLI( - ['tdd', 'echo "test successful"', '--port', '8080'], + ['tdd', 'echo "test successful"', '--port', '47500'], { env: { CI: 'true' }, } diff --git a/tests/integration/tdd-command.spec.js b/tests/integration/tdd-command.spec.js index 9816b53c..eacea75a 100644 --- a/tests/integration/tdd-command.spec.js +++ b/tests/integration/tdd-command.spec.js @@ -165,7 +165,7 @@ describe('TDD Command Integration', () => { '--tdd', 'echo "test"', '--port', - '8080', + '47502', '--environment', 'staging', '--threshold', @@ -198,7 +198,7 @@ describe('TDD Command Integration', () => { describe('TDD Command Options and Configuration', () => { it('should accept valid port option', async () => { - const result = await runCLI(['tdd', 'echo "test"', '--port', '8080'], { + const result = await runCLI(['tdd', 'echo "test"', '--port', '47503'], { env: { CI: 'true' }, });