diff --git a/CHANGELOG.md b/CHANGELOG.md index f1982f78..6e9459b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v3.7.6 + +- Fix: Revert postinstall script + ### v3.7.5 - Fix: Replace `pnpm` with `npm` in scripts to fix build issues diff --git a/README.md b/README.md index 072a937c..9291e3f1 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ If you don't want to create a build system to include Plyr as an npm module, you - Download the files from the CDN links above, they're already minified. - Download the files from [unpkg](https://unpkg.com/browse/plyr/dist/) or similar services. -- Build the project yourself using `pnpm i`, which installs the dependencies and spits out a build to `dist`. +- Build the project yourself using `npm i && npm run build`, which installs the dependencies and spits out a build to `dist`. # Ads diff --git a/package.json b/package.json index 22c7eb6a..5199ff04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plyr", - "version": "3.7.5", + "version": "3.7.6", "description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player", "homepage": "https://plyr.io", "author": "Sam Potts ", @@ -30,7 +30,6 @@ }, "browserslist": "> 1%", "scripts": { - "postinstall": "npm run build", "build": "gulp build", "lint": "eslint src/js && npm run remark && stylelint **/*.scss", "lint:fix": "eslint --fix src/js && stylelint **/*.scss --fix",