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')); diff --git a/package.json b/package.json index 54888ab..805de8b 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { - "name": "react-mfb", - "version": "0.6.0", - "description": "React component for a material menu à la Google Inbox and Evernote", + "name": "react-new-mfb", + "version": "0.1.0", + "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" }, @@ -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" },