npm package template.
Clone repository with Git:
git clone https://github.com/mastashake08/video-transforms.git
cd video-transformsRename package (use npm-package-name-checker to check for name availability):
# replace $NAME with your package name
git grep -l video-transforms | xargs sed -i '' -e "s/video-transforms/$NAME/g"Manually update the files:
- LICENSE
- README.md
- package.json
Reinitialize Git repository:
rm -rf .git
git initInstall package dependencies:
npm installMake first commit:
git commit -am "feat: initial commit"Run tests:
npm testRun tests in watch mode:
npm run test:watchRun tests with coverage:
npm run test:coverageView coverage in browser:
npm run test:coverage:report
open coverage/index.htmlLint files:
npm run lintFix lint errors:
npm run lint:fixOnly collaborators with credentials can release and publish:
npm run release
git push --follow-tags && npm publishTo see what files are going to be published, run the command:
npm pack --dry-run
# tar tvf $(npm pack)