From 3b2dd4ec1ae86a1b9f848280213c528ce10ce335 Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Sat, 4 Apr 2026 06:46:11 -0400 Subject: [PATCH 1/2] Add CODEOWNERS file and update .prettierignore to include it --- .github/CODEOWNERS | 15 +++++++++++++++ .prettierignore | 5 ++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..25fd3c2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,15 @@ +# GitHub CODEOWNERS file +# This file defines code ownership and required reviewers for pull requests +# Documentation: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +# Default owner for everything in the repository +* @mwarman + +# Infrastructure as Code (AWS CDK) +/infrastructure/ @mwarman + +# GitHub configuration and workflows +/.github/ @mwarman + +# Documentation +/docs/ @mwarman diff --git a/.prettierignore b/.prettierignore index 54a0b09..4a82bb6 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,4 +4,7 @@ android # Infrastructure outputs and build artifacts infrastructure/cdk.out infrastructure/dist -infrastructure/coverage \ No newline at end of file +infrastructure/coverage + +# GitHub configuration files +.github/CODEOWNERS \ No newline at end of file From 405073a6172e85e7e930d4aa544fca879f8e0e66 Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Sat, 4 Apr 2026 06:46:23 -0400 Subject: [PATCH 2/2] Bump version to 1.2.0-alpha.1 in package.json and package-lock.json --- infrastructure/package-lock.json | 4 ++-- infrastructure/package.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/infrastructure/package-lock.json b/infrastructure/package-lock.json index 42f5d81..a2d2f6f 100644 --- a/infrastructure/package-lock.json +++ b/infrastructure/package-lock.json @@ -1,12 +1,12 @@ { "name": "ionic8-starter-infrastructure", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ionic8-starter-infrastructure", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "dependencies": { "aws-cdk-lib": "2.240.0", "constructs": "10.5.1", diff --git a/infrastructure/package.json b/infrastructure/package.json index b020a38..8a979ba 100644 --- a/infrastructure/package.json +++ b/infrastructure/package.json @@ -1,6 +1,6 @@ { "name": "ionic8-starter-infrastructure", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "private": true, "scripts": { "build": "tsc", diff --git a/package-lock.json b/package-lock.json index 1d85d00..f163953 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ionic8-starter", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ionic8-starter", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "license": "MIT", "dependencies": { "@capacitor/android": "8.1.0", diff --git a/package.json b/package.json index ff92fe0..0f4e1de 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "url": "git+https://github.com/leanstacks/ionic8-starter.git" }, "license": "MIT", - "version": "1.1.0", + "version": "1.2.0-alpha.1", "type": "module", "scripts": { "android": "npx cap sync android && npx cap open android",