Skip to content
Merged
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
91 changes: 91 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -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/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <support@vizzly.dev>",
Expand Down Expand Up @@ -47,6 +47,7 @@
"files": [
"bin",
"dist",
"docs",
"README.md",
"LICENSE"
],
Expand Down
10 changes: 8 additions & 2 deletions tests/integration/cli-options.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
}
Expand Down Expand Up @@ -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' },
}
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/tdd-command.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ describe('TDD Command Integration', () => {
'--tdd',
'echo "test"',
'--port',
'8080',
'47502',
'--environment',
'staging',
'--threshold',
Expand Down Expand Up @@ -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' },
});

Expand Down