Skip to content

Commit

Permalink
Merge pull request #5732 from processing/fix-extra-files-in-zip
Browse files Browse the repository at this point in the history
only include necessary files in zip
  • Loading branch information
Qianqianye authored Jul 22, 2022
2 parents 9cd1863 + f932352 commit afb7214
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,19 @@ module.exports = grunt => {
options: {
archive: 'release/p5.zip'
},
files: [{ cwd: 'lib/', src: ['**/*'], expand: true }]
files: [
{
cwd: 'lib/',
src: [
'p5.js',
'p5.min.js',
'addons/*',
'empty-example/*',
'README.txt'
],
expand: true
}
]
}
},

Expand Down

0 comments on commit afb7214

Please sign in to comment.