From 68826a33b114d8be5bfdce2574c0f8643b2b29f4 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 11 Oct 2023 11:10:02 -0400 Subject: [PATCH 1/3] chore: initial release --- packages/cli/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index c94cea6..8165440 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { - "name": "@ionic/cli", - "version": "0.0.0", + "name": "@ionic/angular-standalone-codemods", + "version": "0.0.1", "dependencies": { "@angular-eslint/template-parser": "^16.1.2", "@clack/core": "^0.3.3", From 47569a8a77dc6a37f0fd683917a47b43e305adb4 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 11 Oct 2023 11:10:11 -0400 Subject: [PATCH 2/3] chore: update migration guide link --- packages/cli/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 56ff1e8..bd66ae1 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -18,7 +18,7 @@ import { cwd } from "node:process"; import { runStandaloneMigration } from "./angular/migrations/standalone"; const IONIC_MIGRATION_GUIDE_URL = - "https://ionic-docs-git-feature-75-ionic1.vercel.app/docs/angular/build-options#migrating-from-modules-to-standalone"; // TODO update link + "https://www.ionicframework.com/docs/angular/build-options#migrating-from-modules-to-standalone"; const IONIC_REPOSITORY_ISSUES_URL = "https://github.com/ionic-team/ionic-angular-standalone-codemods/issues"; From da811cdd40133d1b0143c72b9dab93e9af609523 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 11 Oct 2023 17:10:43 -0400 Subject: [PATCH 3/3] chore: copy readme into build output --- packages/cli/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 8165440..0dcddd0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/angular-standalone-codemods", - "version": "0.0.1", + "version": "0.0.2", "dependencies": { "@angular-eslint/template-parser": "^16.1.2", "@clack/core": "^0.3.3", @@ -12,7 +12,7 @@ "bin": "./dist/index.js", "scripts": { "start": "jiti ./src/index.ts", - "build": "tsup src/index.ts --format cjs,esm --dts", + "build": "tsup src/index.ts --format cjs,esm --dts && cp ../../README.md dist/", "watch": "pnpm run build --watch", "dev": "pnpm run build --watch", "test": "vitest run",