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
module.exports = { | |
presets: [ | |
[ | |
"@babel/preset-env", | |
{ | |
targets: { | |
browsers: [ | |
"> 0.2%", | |
"last 2 versions", | |
"not dead", |
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
# Exclude all directories and subdirectories | |
/* | |
# specifically unignore | |
!README.md | |
!.gitignore | |
## Plugins: exclude all plugin directories except your custom plugims | |
# include custom plugins here: | |
!plugins/my-plugin/ | |
## Theme: exclude all theme directories except your custom theme |
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
# Numerous always-ignore extensions | |
*.diff | |
*.err | |
*.orig | |
*.log | |
*.tmp | |
*.rej | |
*.swo | |
*.swp | |
*.vi |
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
#!/bin/bash | |
get_deps() { | |
sudo apt install build-essentials autoconf autogen texinfo zlib1g-dev tcl-dev tk-dev mesa-common-dev libjpeg-dev libtogl-dev python-dev flex bison itcl3 itk3 iwidgets4 git | |
} | |
get_insight() { | |
git clone --recursive https://github.com/monnerat/insight.git | |
} |