Skip to content

Commit

Permalink
fix some obvious issues
Browse files Browse the repository at this point in the history
Signed-off-by: Deepak Mishra <[email protected]>
  • Loading branch information
deepak-swirlds committed Nov 14, 2023
1 parent 334b4c1 commit 3a63854
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion fullstack-network-manager/fsnetman.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node
import * as fnm from './src/index.mjs'
const cli = fnm.main(process.argv)

// CLI entry point
fnm.main(process.argv)
1 change: 0 additions & 1 deletion fullstack-network-manager/src/commands/chart.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { BaseCommand } from './base.mjs'
import * as core from '../core/index.mjs'
import * as flags from './flags.mjs'
import { constants } from '../core/index.mjs'

Expand Down
3 changes: 1 addition & 2 deletions fullstack-network-manager/src/commands/node.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { BaseCommand } from './base.mjs'
import * as flags from './flags.mjs'
import {
DataValidationError,
FullstackTestingError,
IllegalArgumentError,
MissingArgumentError
} from '../core/errors.mjs'
import { constants, PackageDownloader, Templates } from '../core/index.mjs'
import { constants, Templates } from '../core/index.mjs'
import chalk from 'chalk'
import * as fs from 'fs'

Expand Down

0 comments on commit 3a63854

Please sign in to comment.