├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── schematics ├── add │ ├── index.ts │ ├── schema.d.ts │ └── schema.json ├── cap-init │ ├── index.ts │ ├── schema.d.ts │ └── schema.json ├── collection.json └── utils │ ├── ast.ts │ ├── config.ts │ ├── devkit-utils │ ├── ast-utils.ts │ ├── change.ts │ ├── readme.md │ └── route-utils.ts │ ├── getPackageManager.ts │ └── package.ts └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /schematics/add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/add/index.ts -------------------------------------------------------------------------------- /schematics/add/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | project?: string; 3 | } 4 | -------------------------------------------------------------------------------- /schematics/add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/add/schema.json -------------------------------------------------------------------------------- /schematics/cap-init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/cap-init/index.ts -------------------------------------------------------------------------------- /schematics/cap-init/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | command: string; 3 | args : any[]; 4 | } 5 | -------------------------------------------------------------------------------- /schematics/cap-init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/cap-init/schema.json -------------------------------------------------------------------------------- /schematics/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/collection.json -------------------------------------------------------------------------------- /schematics/utils/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/ast.ts -------------------------------------------------------------------------------- /schematics/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/config.ts -------------------------------------------------------------------------------- /schematics/utils/devkit-utils/ast-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/devkit-utils/ast-utils.ts -------------------------------------------------------------------------------- /schematics/utils/devkit-utils/change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/devkit-utils/change.ts -------------------------------------------------------------------------------- /schematics/utils/devkit-utils/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/devkit-utils/readme.md -------------------------------------------------------------------------------- /schematics/utils/devkit-utils/route-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/devkit-utils/route-utils.ts -------------------------------------------------------------------------------- /schematics/utils/getPackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/getPackageManager.ts -------------------------------------------------------------------------------- /schematics/utils/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/schematics/utils/package.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/capacitor-angular-toolkit/HEAD/tsconfig.json --------------------------------------------------------------------------------