Skip to content

Commit 11fd4d2

Browse files
authored
chore: bump mobilewright packages to 0.0.22 (#2)
1 parent 8a9b8e0 commit 11fd4d2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function createPackageJson(targetDir: string, language: Language): void {
1919
...(typeof pkg.devDependencies === "object" && pkg.devDependencies !== null
2020
? (pkg.devDependencies as Record<string, string>)
2121
: {}),
22-
"@mobilewright/test": "0.0.21",
23-
"mobilewright": "0.0.21",
22+
"@mobilewright/test": "0.0.22",
23+
"mobilewright": "0.0.22",
2424
};
2525

2626
if (language === "ts") {
@@ -37,8 +37,8 @@ function createConfigFile(targetDir: string, testDir: string, language: Language
3737
const configPath = path.join(targetDir, `mobilewright.config.${ext}`);
3838

3939
const importLine = language === "ts"
40-
? `import { defineConfig } from '@mobilewright/test';\n`
41-
: `const { defineConfig } = require('@mobilewright/test');\n`;
40+
? `import { defineConfig } from 'mobilewright';\n`
41+
: `const { defineConfig } = require('mobilewright');\n`;
4242

4343
const exportLine = language === "ts"
4444
? "export default defineConfig"

0 commit comments

Comments
 (0)