From 1db4e7291fe58a726972bf033224f3e7102f74ac Mon Sep 17 00:00:00 2001 From: ntolosa Date: Thu, 19 Oct 2023 10:21:40 -0300 Subject: [PATCH 1/3] Update gulpfile.js to support gulp 4 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e0a6196..56b07b9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -14,4 +14,4 @@ gulp.task('css', function(){ .pipe(gulp.dest('./')); }); -gulp.task('default', ['js', 'css']); +gulp.task('default', gulp.series('js', 'css')); From b3418a6a23923c9da06a1ebbb3891724bdd183e1 Mon Sep 17 00:00:00 2001 From: ntolosa Date: Thu, 19 Oct 2023 10:23:12 -0300 Subject: [PATCH 2/3] Update package.json to use react 18 --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 54888ab..ec3c564 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "react-mfb", - "version": "0.6.0", + "name": "react-new-mfb", + "version": "0.1.0", "description": "React component for a material menu à la Google Inbox and Evernote", "author": "Nobita", "contributors": [], @@ -26,7 +26,8 @@ "dependencies": { "classnames": "^1.2.0", "prop-types": "^15.5.10", - "react-dom": "^15.3.1" + "react": "^18.2.0", + "react-dom": "^18.2.0" }, "peerDependencies": { "react": "^15.3.1" @@ -41,7 +42,7 @@ "grunt-contrib-watch": "^0.6.1", "grunt-gh-pages": "^0.9.1", "grunt-usemin": "^3.0.0", - "gulp": "^3.8.11", + "gulp": "^4.0.0", "gulp-babel": "^4.0.0", "reactify": "^1.0.0" }, From 683bfc28435208813682eb3614dd7a90d2fc181d Mon Sep 17 00:00:00 2001 From: ntolosa Date: Thu, 19 Oct 2023 10:28:34 -0300 Subject: [PATCH 3/3] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ec3c564..805de8b 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "react-new-mfb", "version": "0.1.0", - "description": "React component for a material menu à la Google Inbox and Evernote", + "description": "Fork of https://github.com/nobitagit/react-material-floating-button", "author": "Nobita", "contributors": [], "license": "MIT", - "repository": "nobitagit/react-material-floating-button", + "repository": "ntolosa/react-material-floating-button", "engines": { "node": ">= 0.10" },