Skip to content

Commit

Permalink
fix(instructions): removed @inertia/inertia
Browse files Browse the repository at this point in the history
BREAKING CHANGE: inertia releases prior to v1 are no longer supported
  • Loading branch information
eidellev committed Mar 8, 2023
1 parent b7c53d9 commit f4cdc87
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions instructions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,12 @@ export default async function instructions(projectRoot: string, app: Application
/**
* Install required dependencies
*/

pkg.install('@inertiajs/inertia', undefined, false);
pkg.install(adapter, undefined, false);

/**
* Find the list of packages we have to remove
*/
const packages = ['@inertia/inertia', adapter].map((p) => sink.logger.colors.green(p)).join(', ');
const packages = [adapter].map((p) => sink.logger.colors.green(p)).join(', ');
const spinner = sink.logger.await(`Installing ${packages}`);

try {
Expand Down

0 comments on commit f4cdc87

Please sign in to comment.