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
| import re | |
| # run ./git-most.sh > most.txt before this script | |
| # adjust whitelist var if you only want to see changes to a certain filetype/file/path | |
| most_changed_paths = {} | |
| whitelist = '' # '.yml' | |
| with open('most.txt') as f: | |
| for line in f.readlines(): |
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
| # http://editorconfig.org | |
| root = true | |
| # Unix-style newlines with a newline ending every file | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_style = space | |
| indent_size = 4 | |
| trim_trailing_whitespace = true |
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
| .DEFAULT_GOAL := help | |
| #help: @ List available tasks on this project | |
| help: | |
| @grep -E '[a-zA-Z\.\-]+:.*?@ .*$$' $(MAKEFILE_LIST)| tr -d '#' | awk 'BEGIN {FS = ":.*?@ "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | |
| #dep.install: @ Install all depencies defined in package.json | |
| dep.install: | |
| yarn install |
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
| release.package: r.bundle r.fingerprint r.package | |
| r.bundle: | |
| yarn run dist -- --APP_ENV=prod | |
| r.fingerprint: | |
| @echo "<!-- `date --utc` - revision: `git log -n 1 --pretty=format:'%h' -->" >> dist/prod/index.html | |
| r.package: | |
| tar -czvf nodeapp.tar.gz -C app/dist/prod . |
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
| test.lint: | |
| yarn run test:lint | |
| test.unit: | |
| yarn run test:unit | |
| test.end2end: | |
| yarn run test:e2e |