Skip to content

Commit

Permalink
fix(schematics): make sure the schematics install the latest version …
Browse files Browse the repository at this point in the history
…off our playwright plugin, instead of 0.0.2 (#1554)
  • Loading branch information
SanderElias authored Mar 2, 2022
1 parent f2c50b4 commit 9eda23d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/scully-schematics/src/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const addDependencies = (options: Schema) => (tree: Tree, context: SchematicCont
case 'playwright':
context.logger.info('Installing playwright plugin');
// just using a hardcoded version as we are in beta
addPackageToPackageJson(tree, '@scullyio/scully-plugin-playwright', `0.0.2`);
addPackageToPackageJson(tree, '@scullyio/scully-plugin-playwright', `${_scullyComponentVersion}`);
break;
case 'sps':
context.logger.info('Installing Scully Platform Server plugin');
Expand Down

0 comments on commit 9eda23d

Please sign in to comment.