Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions duplicate-tabs-closer-master/BUNDLE_VERIFICATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Background Bundle Verification

This document records the verification performed to ensure that `background.bundle.js`
provides the exact same behaviour as the previous individual background scripts.

## Method

The bundle was compared against a plain concatenation of the original source files
(`tabsInfo.js`, `options.js`, `urlUtils.js`, `badge.js`, `worker.js`,
`messageListener.js`, and `background.js`) from the previous commit.

```
(
git show HEAD^:duplicate-tabs-closer-master/tabsInfo.js
git show HEAD^:duplicate-tabs-closer-master/options.js
git show HEAD^:duplicate-tabs-closer-master/urlUtils.js
git show HEAD^:duplicate-tabs-closer-master/badge.js
git show HEAD^:duplicate-tabs-closer-master/worker.js
git show HEAD^:duplicate-tabs-closer-master/messageListener.js
git show HEAD^:duplicate-tabs-closer-master/background.js
) > /tmp/oldbundle.js

diff -u /tmp/oldbundle.js duplicate-tabs-closer-master/background.bundle.js
```

The diff showed no differences other than the missing trailing newline at the end
of the bundle file, confirming that the bundle executes the same code in the same
order as before.
Loading