🔥 Blazing fast builds
😇 CommonJS bundle
🌲 .mjs bundle
✨ .d.ts bundle + type-checking
🧐 Source maps
This will print out the common-ancestor commit between the commits/branches causing the problem:
git merge-base feature-b-off-a feature-a
Take all the commits between common-ancestor and feature-b-off-a and rebase them onto main
git rebase --onto main <common-ancestor> feature-b-off-a
Then you'll need to force push since it's a rebase
- Run
npm version pre<type> --preid=rc --no-git-tag-version - This will bump the version in package.json to 2.0.0-rc.0
- Run
npm packto create the package tgz - Run
npm publish <package>.tgz --tag next [--dry-run]to publish the package under thenexttag (with the `--dry-run parameter if you'd like to test it before actually publishing it) - Run
npm install --save package@nextto install prerelease package
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export faderim_app=app-magazord | |
| alias git-pull-all="find . -maxdepth 3 -name .git -type d | rev | cut -c 6- | rev | xargs -I {} sh -c 'echo ""Atualizando repositório"" {}; git -C {} pull'" | |
| docker_magazord() { | |
| (cd /mnt/Dev/dev/docker-magazord; docker-compose $@) | |
| } | |
| docker_magapay() { | |
| (cd /mnt/Dev/dev/docker-magapay; docker-compose $@) |