Skip to content

Commit 41d1ef0

Browse files
author
=
committed
update so the jszip is included in the build step, this allows us to use it in background.js
1 parent 57dcf51 commit 41d1ef0

File tree

4 files changed

+11594
-0
lines changed

4 files changed

+11594
-0
lines changed

platform_spec/firefox/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
},
4343
"background": {
4444
"scripts": [
45+
"jszip.min.js",
4546
"background.js"
4647
]
4748
},

scripts/build.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ async function run_build(type, commit_number) {
9898
console.log(`[FastForward.build.${type}] copying PRIVACY.md to ${destination}`);
9999
fs.copyFileSync(`${working_directory}/PRIVACY.md`, `${destination}/PRIVACY.md`);
100100

101+
console.log(`[FastForward.build.${type}] copying jszip.min.js to ${destination}`);
102+
fs.copyFileSync(`${working_directory}/src/external/jszip.min.js`, `${destination}/jszip.min.js`);
103+
101104
console.log(`[FastForward.build.${type}] copying manifest to ${destination}`);
102105
fs.copyFileSync(`${working_directory}/platform_spec/${type}/manifest.json`, `${destination}/manifest.json`);
103106

0 commit comments

Comments
 (0)