From 1752fa6f1d80665fc228205b8552051480a6a04b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Connor=20B=C3=A4r?= Date: Tue, 26 Nov 2019 12:11:11 -0300 Subject: [PATCH] feat: bump dependency versions (#9) --- main.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/main.js b/main.js index 36633f7..86f4e89 100644 --- a/main.js +++ b/main.js @@ -33,22 +33,21 @@ const APP_NAME = process.argv[2]; const APP_PATH = resolve(WORKING_DIR, APP_NAME || ''); const DEPENDENCIES = [ // Our beautiful component library 💄 - '@sumup/circuit-ui@beta', + '@sumup/circuit-ui@^1.0.0', // CSS-in-JS 🚀 '@emotion/core@^10.0.10', 'emotion-theming@^10.0.10', - '@emotion/styled@^10.0.10', - 'jest-emotion@^10.0.10' + '@emotion/styled@^10.0.10' ]; const DEV_DEPENDENCIES = [ // React ⚛️ 'prop-types', // The toolkit 🛠 - '@sumup/foundry@beta', + '@sumup/foundry@^1.0.0', // Testing 📏 - '@testing-library/react@^8.0.0', + '@testing-library/react@^9.0.0', 'jest-emotion@^10.0.11', - 'jest-dom@^3.4.0' + '@testing-library/jest-dom@^4.2.0' ]; const listrOptions = util.isDebugging() @@ -61,7 +60,6 @@ const tasks = new Listr( [ { title: 'Running Create React App', - // task: () => runCreateReactApp(APP_NAME) task: () => runCreateReactApp(APP_NAME) }, {