master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
17 changed files with 30 additions and 0 deletions
Showing only changes of commit 9f260b8d0b - Show all commits

5
.pubignore Normal file
View File

@ -0,0 +1,5 @@
new_version.sh
.latest_version
.vscode/
example/
models/

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -32,6 +32,11 @@ for package in "$PACKAGES_DIR"/*; do
rm "$package/.gitignore"
fi
# Remove .pubignore file if it exists
if [ -f "$package/.pubignore" ]; then
rm "$package/.pubignore"
fi
# Remove AUTHORS file if it exists
if [ -f "$package/AUTHORS" ]; then
rm "$package/AUTHORS"

View File

@ -37,6 +37,12 @@ for package in "$PACKAGES_DIR"/*; do
ln -s ../../.gitignore .gitignore
fi
# Create symbolic link to the main .pubignore file if it does not already
# exist
if [ ! -f .pubignore ]; then
ln -s ../../.pubignore .pubignore
fi
# Create symbolic link to the main AUTHORS file if it does not already
# exist