├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── package.json ├── src ├── commands │ ├── goodbye.js │ └── hello.js └── index.js ├── test ├── commands │ ├── goodbye.test.js │ └── hello.test.js └── mocha.opts └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "oclif" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/goodbye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/src/commands/goodbye.js -------------------------------------------------------------------------------- /src/commands/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/src/commands/hello.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@oclif/command') 2 | -------------------------------------------------------------------------------- /test/commands/goodbye.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/test/commands/goodbye.test.js -------------------------------------------------------------------------------- /test/commands/hello.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/test/commands/hello.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/example-multi-js/HEAD/yarn.lock --------------------------------------------------------------------------------