flurry-cli 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flurry-cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Flurry CLI",
5
5
  "module": "src/cli.ts",
6
6
  "type": "module",
@@ -29,4 +29,4 @@
29
29
  "node-random-name": "^1.0.1",
30
30
  "zod": "npm:zod@^3.25.67"
31
31
  }
32
- }
32
+ }
package/index.ts DELETED
@@ -1 +0,0 @@
1
- console.log("Hello via Bun!");
@@ -1,38 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Set and export LocalStack environment variables
4
- export FANTESTIC_USE_LOCALSTACK=true
5
- export FANTESTIC_LOCALSTACK_ENDPOINT=http://localhost:4566
6
- echo "Set environment variables:"
7
- echo "FANTESTIC_USE_LOCALSTACK=true"
8
- echo "FANTESTIC_LOCALSTACK_ENDPOINT=http://localhost:4566"
9
-
10
- # Check if Docker is running
11
- if ! docker info > /dev/null 2>&1; then
12
- echo "Docker is not running. Please start Docker and try again."
13
- exit 1
14
- fi
15
-
16
- # Check if LocalStack is already running
17
- if docker ps | grep -q "localstack/localstack"; then
18
- echo "LocalStack is already running."
19
- else
20
- echo "Starting LocalStack..."
21
- docker run -d --name localstack -p 4566:4566 -e SERVICES=kinesis,dynamodb localstack/localstack
22
-
23
- # Wait for LocalStack to be ready
24
- echo "Waiting for LocalStack to start..."
25
- sleep 10
26
- fi
27
-
28
- # Create a test Kinesis stream
29
- echo "Creating a test Kinesis stream..."
30
- aws --endpoint-url=http://localhost:4566 kinesis create-stream --stream-name test-kinesis-stream --shard-count 1
31
-
32
- echo "LocalStack setup complete!"
33
- echo "You can now run your Kinesis tests using: npm test -- KinesisTask.test.ts"
34
- echo ""
35
- echo "To clean up, run:"
36
- echo "docker stop localstack"
37
- echo "docker rm localstack"
38
- echo "unset FANTESTIC_USE_LOCALSTACK FANTESTIC_LOCALSTACK_ENDPOINT"
package/tsconfig.json DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Environment setup & latest features
4
- "lib": ["ESNext"],
5
- "target": "ESNext",
6
- "module": "Preserve",
7
- "moduleDetection": "force",
8
- "jsx": "react-jsx",
9
- "allowJs": true,
10
-
11
- // Bundler mode
12
- "moduleResolution": "bundler",
13
- "allowImportingTsExtensions": true,
14
- "verbatimModuleSyntax": true,
15
- "noEmit": true,
16
-
17
- // Best practices
18
- "strict": true,
19
- "skipLibCheck": true,
20
- "noFallthroughCasesInSwitch": true,
21
- "noUncheckedIndexedAccess": true,
22
- "noImplicitOverride": true,
23
-
24
- // Some stricter flags (disabled by default)
25
- "noUnusedLocals": false,
26
- "noUnusedParameters": false,
27
- "noPropertyAccessFromIndexSignature": false
28
- }
29
- }