From 502cd669da991caa2741892af685ab04cc9a8a6e Mon Sep 17 00:00:00 2001 From: Dale Sande Date: Wed, 19 Apr 2023 10:38:01 -0700 Subject: [PATCH] perf(es5): remove postinstall instrucions #61 Changes to be committed: deleted: scripts/postinstall.js --- scripts/postinstall.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 scripts/postinstall.js diff --git a/scripts/postinstall.js b/scripts/postinstall.js deleted file mode 100644 index 2950629..0000000 --- a/scripts/postinstall.js +++ /dev/null @@ -1,12 +0,0 @@ -const fs = require('fs'); - -// convince Parcel to Transpile auro dependencies -const modules = [ - 'lit-element', - 'lit-html', -]; -const browserslistrc = 'node 12.15.0'; - -modules.forEach(name => { - fs.writeFileSync(`node_modules/${name}/.browserslistrc`, browserslistrc); -});