From d6e10523cb84e8b2ccf1443ffe91ade858deac13 Mon Sep 17 00:00:00 2001 From: Markus Sanin Date: Wed, 15 May 2024 07:50:27 +0200 Subject: [PATCH 1/2] Remove default `ciProvider` for app options --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index ac534e5..0cec436 100644 --- a/index.js +++ b/index.js @@ -183,7 +183,6 @@ module.exports = { entity: { name: testAppInfo.name.raw }, name: testAppInfo.name.raw, rawName: testAppInfo.name.raw, - ciProvider: 'travis', // we will delete this anyway below, as the CI config goes into the root folder welcome: false, }; From 25ab6091b819469bc5dc2b970387b8c190674ef9 Mon Sep 17 00:00:00 2001 From: Markus Sanin Date: Wed, 15 May 2024 07:54:30 +0200 Subject: [PATCH 2/2] Remove unlink (not necessary, as default is not anymore travis) --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 0cec436..4297a0e 100644 --- a/index.js +++ b/index.js @@ -191,7 +191,6 @@ module.exports = { await Promise.all([ this.updateTestAppPackageJson(path.join(testAppPath, 'package.json'), isPnpm(options)), this.overrideTestAppFiles(testAppPath, path.join(options.target, 'test-app-overrides')), - fs.unlink(path.join(testAppPath, '.travis.yml')), ]); if (options.typescript) {