diff --git a/packages/cli/package.json b/packages/cli/package.json index c94cea6..0dcddd0 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.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", 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";