forked from dochne/wappalyzer
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e60865
commit 1535728
Showing
59 changed files
with
275 additions
and
7,713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,5 @@ | ||
const fs = require('fs') | ||
const Zip = require('adm-zip') | ||
|
||
const currentVersion = JSON.parse( | ||
fs.readFileSync('./src/manifest-v3.json') | ||
).version | ||
|
||
const version = process.argv[2] | ||
|
||
if (!version) { | ||
// eslint-disable-next-line no-console | ||
console.error( | ||
`No version number specified. Current version is ${currentVersion}.` | ||
) | ||
|
||
process.exit(1) | ||
} | ||
|
||
;['./src/manifest-v2.json', './src/manifest-v3.json'].forEach((file) => { | ||
const json = JSON.parse(fs.readFileSync(file)) | ||
|
||
json.version = version | ||
|
||
fs.writeFileSync(file, JSON.stringify(json, null, 2)) | ||
}) | ||
|
||
fs.copyFileSync(`./src/manifest.json`, './src/manifest.bak.json') | ||
|
||
fs.copyFileSync(`./src/manifest-v2.json`, './src/manifest.json') | ||
|
||
let zip = new Zip() | ||
|
||
zip.addLocalFolder('./src', '') | ||
|
||
zip.writeZip('./build/webextension-v2.zip') | ||
|
||
fs.copyFileSync(`./src/manifest-v3.json`, './src/manifest.json') | ||
|
||
zip = new Zip() | ||
const zip = new Zip() | ||
|
||
zip.addLocalFolder('./src', '') | ||
|
||
zip.writeZip('./build/webextension-v3.zip') | ||
|
||
fs.copyFileSync(`./src/manifest.bak.json`, './src/manifest.json') | ||
zip.writeZip('./build/webextension.zip') |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.