Commit e7bded65 by Nicolás Venturo

Fix ignoring mock artifacts on release

parent 5f357d85
...@@ -18,8 +18,8 @@ const pkgFiles = readJSON('package.json').files; ...@@ -18,8 +18,8 @@ const pkgFiles = readJSON('package.json').files;
// Get only negated patterns. // Get only negated patterns.
const ignorePatterns = pkgFiles const ignorePatterns = pkgFiles
.filter(pat => pat.startsWith('!')) .filter(pat => pat.startsWith('!'))
// Remove the negation part. Makes micromatch usage more intuitive. // Remove the negation part and initial slash. Makes micromatch usage more intuitive.
.map(pat => pat.slice(1)); .map(pat => pat.slice(1).replace(/^\//, ''));
const ignorePatternsSubtrees = ignorePatterns const ignorePatternsSubtrees = ignorePatterns
// Add **/* to ignore all files contained in the directories. // Add **/* to ignore all files contained in the directories.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment