diff options
author | VirtualTam <virtualtam@flibidi.net> | 2016-07-23 19:26:05 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2016-07-25 23:54:13 +0200 |
commit | 559315ba0a89e306bc46d0a540f1536193860580 (patch) | |
tree | 3d71f09ef5ea21fa152cf7d177e490b8452aef23 /.gitignore | |
parent | 7f5ab8c0a40ebc7f10c2b92f05a475f8c6902948 (diff) | |
download | Shaarli-559315ba0a89e306bc46d0a540f1536193860580.tar.gz Shaarli-559315ba0a89e306bc46d0a540f1536193860580.tar.zst Shaarli-559315ba0a89e306bc46d0a540f1536193860580.zip |
Makefile: generate release archives including 3rd-party libraries
Relates to #607
Archive creation process (tar, zip):
- let Composer resolve functional (no-dev) dependencies
- call git-archive to generate a release archive
- include 3rd-party dependencies to the generated archive
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -1,4 +1,4 @@ | |||
1 | # Ignore data/, tmp/, cache/ and pagecache/ | 1 | # Shaarli runtime resources |
2 | data | 2 | data |
3 | tmp | 3 | tmp |
4 | cache | 4 | cache |
@@ -9,18 +9,22 @@ pagecache | |||
9 | .buildpath | 9 | .buildpath |
10 | .project | 10 | .project |
11 | 11 | ||
12 | # Ignore raintpl generated pages | 12 | # Raintpl generated pages |
13 | *.rtpl.php | 13 | *.rtpl.php |
14 | 14 | ||
15 | # Ignore test dependencies | 15 | # 3rd-party dependencies |
16 | composer.lock | 16 | composer.lock |
17 | /vendor/ | 17 | vendor/ |
18 | 18 | ||
19 | # Ignore development and test resources | 19 | # Release archives |
20 | *.tar | ||
21 | *.zip | ||
22 | |||
23 | # Development and test resources | ||
20 | coverage | 24 | coverage |
21 | doxygen | 25 | doxygen |
22 | sandbox | 26 | sandbox |
23 | phpmd.html | 27 | phpmd.html |
24 | 28 | ||
25 | # Ignore user plugin configuration | 29 | # User plugin configuration |
26 | plugins/*/config.php | 30 | plugins/*/config.php |