From 9eda23d7b069c28f27512cb33a2cf655fc5f30bf Mon Sep 17 00:00:00 2001 From: Sander Elias Date: Wed, 2 Mar 2022 09:12:52 +0100 Subject: [PATCH] fix(schematics): make sure the schematics install the latest version off our playwright plugin, instead of 0.0.2 (#1554) --- libs/scully-schematics/src/ng-add/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/scully-schematics/src/ng-add/index.ts b/libs/scully-schematics/src/ng-add/index.ts index bb2fe60f7..4526ccc2d 100644 --- a/libs/scully-schematics/src/ng-add/index.ts +++ b/libs/scully-schematics/src/ng-add/index.ts @@ -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');