📣 Support/Questions?: Please see our Support Page for general support questions. The issues on GitHub should be reserved for bug reports and feature requests.
Run the command(s) with --verbose
to produce debugging output. We may ask for
the full command output, including debug statements.
Please also copy/paste the output of the ionic info
command into your issue
and be as descriptive as possible. Include any steps that might help us
reproduce your issue.
Post an issue describing your feature to open a dialogue with us. We're happy to hear from you!
Pull requests are most welcome! But, if you plan to add features or do large refactors, please open a dialogue with us first by creating an issue. Small bug fixes are welcome any time.
Our CLI is organized into a single multi-package repository. Common tools, such
as Typescript and jest, are installed in the base directory while package
dependencies are each installed in their respective packages/**/node_modules
directories.
Each packages/*
folder represents a package on npm.
packages/ionic
: Executable package.packages/@ionic/cli-utils
: Utilities package.packages/@ionic/cli-plugin-*
: CLI plugins.
- npm 5 is required.
- Node 8.1+ is required.
- Our codebase is written in Typescript. If you're unfamiliar with Typescript, we recommend using VS Code and finding a tutorial to familiarize yourself with basic concepts.
- Our test suite uses Jest.
- Fork the repo & clone it locally.
npm install
to install the dev tools.npm run bootstrap
(will install package dependencies and link packages together)- Optionally
npm link
insidepackages/ionic/
to makeionic
point to your dev CLI. npm run watch
will spin up Typescript watch scripts for all packages.- Typescript source files are in
packages/**/src
. - Good luck! 💪 Please open an issue if you have questions or something is unclear.
Switch to dev CLI:
$ npm uninstall -g ionic
$ cd packages/ionic/
$ npm link
Switch back to stable CLI:
$ cd packages/ionic/
$ npm unlink
$ npm i -g ionic
TODO: Be helpful about where to look for commands, utilities, etc.
Cancel any watch scripts before proceeding.
- testing releases:
npm run publish:testing
- canary releases:
npm run publish:canary
- stable releases:
npm run publish