From f932352533264e815e65704c6c35399ad7270311 Mon Sep 17 00:00:00 2001 From: evelyn masso Date: Thu, 21 Jul 2022 16:47:49 -0700 Subject: [PATCH] only include necessary files in zip --- Gruntfile.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2953b17d17..1d266f39ac 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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 + } + ] } },