From f57384bbf66ca623db2a922abf25740ac87751c6 Mon Sep 17 00:00:00 2001 From: Dexter Marks-Barber Date: Fri, 11 Sep 2020 18:51:27 +0100 Subject: [PATCH 1/2] Add future property to simpleconfig stub --- stubs/simpleConfig.stub.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stubs/simpleConfig.stub.js b/stubs/simpleConfig.stub.js index 138dac7d9fa6..8ea44c89fa63 100644 --- a/stubs/simpleConfig.stub.js +++ b/stubs/simpleConfig.stub.js @@ -1,8 +1,9 @@ module.exports = { purge: [], + plugins: [], theme: { extend: {}, }, + future: {}, variants: {}, - plugins: [], } From baa5399d3af157e07cb0bda091bd36985847ca75 Mon Sep 17 00:00:00 2001 From: Dexter Marks-Barber Date: Sat, 12 Sep 2020 09:01:46 +0100 Subject: [PATCH 2/2] Add future flags manually --- stubs/simpleConfig.stub.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stubs/simpleConfig.stub.js b/stubs/simpleConfig.stub.js index 8ea44c89fa63..53344f079f9d 100644 --- a/stubs/simpleConfig.stub.js +++ b/stubs/simpleConfig.stub.js @@ -4,6 +4,9 @@ module.exports = { theme: { extend: {}, }, - future: {}, + future: { + // removeDeprecatedGapUtilities: true, + // purgeLayersByDefault: true, + }, variants: {}, }