├── .gitignore ├── LICENSE ├── README.md ├── bin └── velocity ├── index.js ├── lib ├── getPlatform.js ├── hasArgument.js ├── isCommand.js ├── isWindows.js ├── replaceArgument.js ├── replaceCommand.js ├── run.js ├── spawnMeteor.js └── spawnTestPackagesMeteor.js ├── package.json └── spec ├── getPlatform.js ├── hasArgumentSpec.js ├── isCommandSpec.js ├── isWindowsSpec.js ├── replaceArgumentSpec.js ├── runSpec.js ├── spawnMeteorSpec.js ├── spawnTestPackagesMeteorSpec.js └── support └── jasmine.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/velocity: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../index'); 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/index.js -------------------------------------------------------------------------------- /lib/getPlatform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/getPlatform.js -------------------------------------------------------------------------------- /lib/hasArgument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/hasArgument.js -------------------------------------------------------------------------------- /lib/isCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/isCommand.js -------------------------------------------------------------------------------- /lib/isWindows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/isWindows.js -------------------------------------------------------------------------------- /lib/replaceArgument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/replaceArgument.js -------------------------------------------------------------------------------- /lib/replaceCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/replaceCommand.js -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/run.js -------------------------------------------------------------------------------- /lib/spawnMeteor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/spawnMeteor.js -------------------------------------------------------------------------------- /lib/spawnTestPackagesMeteor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/lib/spawnTestPackagesMeteor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/package.json -------------------------------------------------------------------------------- /spec/getPlatform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/getPlatform.js -------------------------------------------------------------------------------- /spec/hasArgumentSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/hasArgumentSpec.js -------------------------------------------------------------------------------- /spec/isCommandSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/isCommandSpec.js -------------------------------------------------------------------------------- /spec/isWindowsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/isWindowsSpec.js -------------------------------------------------------------------------------- /spec/replaceArgumentSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/replaceArgumentSpec.js -------------------------------------------------------------------------------- /spec/runSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/runSpec.js -------------------------------------------------------------------------------- /spec/spawnMeteorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/spawnMeteorSpec.js -------------------------------------------------------------------------------- /spec/spawnTestPackagesMeteorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/spawnTestPackagesMeteorSpec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/velocity-cli/HEAD/spec/support/jasmine.json --------------------------------------------------------------------------------