Skip to content

Commit e53fdb8

Browse files
committed
Artifacts glob pattern expansion
1 parent 8563681 commit e53fdb8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
#### v1.0.? `2016-??-??`
4+
- Additional artifacts glob pattern expansion to match Phulp files.
5+
36
#### v1.0.6 `2016-09-11`
47
- Fix present, invalid `.gitattributes` files are overwritable. Closes [#8](https://github.com/raphaelstolt/lean-package-validator/issues/8).
58

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The `--glob-pattern` option allows you to overwrite the default pattern\* used t
5050
``` bash
5151
lean-package-validator validate [<directory>] --glob-pattern '{.*,*.rst,*.py[cod],dist/}'
5252
```
53-
\* The default pattern is `{.*,*.lock,*.txt,*.rst,*.{md,MD},*.xml,*.yml,box.json,*dist*,{B,b}uild*,{D,d}oc*,{T,t}ool*,{T,t}est*,{S,s}pec*,{E,e}xample*,LICENSE,{{M,m}ake,{B,b}ox,{V,v}agrant}file,RMT}*`.
53+
\* The default pattern is `{.*,*.lock,*.txt,*.rst,*.{md,MD},*.xml,*.yml,box.json,*dist*,{B,b}uild*,{D,d}oc*,{T,t}ool*,{T,t}est*,{S,s}pec*,{E,e}xample*,LICENSE,{{M,m}ake,{B,b}ox,{V,v}agrant,{P,p}hulp}file,RMT}*`.
5454

5555
The `--validate-git-archive` option will validate that no common repository artifacts slip into the release/dist archive file. It will do so by creating a `temporary archive` from the current Git `HEAD` and by inspecting it's content.
5656

src/Analyser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function __construct()
6464
'{S,s}pec*',
6565
'{E,e}xample*',
6666
'LICENSE',
67-
'{{M,m}ake,{B,b}ox,{V,v}agrant}file',
67+
'{{M,m}ake,{B,b}ox,{V,v}agrant,{P,p}hulp}file',
6868
'RMT'
6969
];
7070

0 commit comments

Comments
 (0)