mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
22022f636f
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1664 The changes are enough to fulfill the related issue. A new platform has been added in order to allow for building a NodeJS package. From the root of the project: ./tools/make-nodejs This will create new uBlock0.nodejs directory in the ./dist/build directory, which is a valid NodeJS package. From the root of the package, you can try: node test This will instantiate a static network filtering engine, populated by easylist and easyprivacy, which can be used to match network requests by filling the appropriate filtering context object. The test.js file contains code which is typical example of usage of the package. Limitations: the NodeJS package can't execute the WASM versions of the code since the WASM module requires the use of fetch(), which is not available in NodeJS. This is a first pass at modularizing the codebase, and while at it a number of opportunistic small rewrites have also been made. This commit requires the minimum supported version for Chromium and Firefox be raised to 61 and 60 respectively.
47 lines
1.2 KiB
Bash
Executable File
47 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock0.opera: Creating web store package"
|
|
|
|
DES=dist/build/uBlock0.opera
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
echo "*** uBlock0.opera: Copying common files"
|
|
bash ./tools/copy-common-files.sh $DES
|
|
|
|
# Chromium-specific
|
|
echo "*** uBlock0.opera: Copying chromium-specific files"
|
|
cp platform/chromium/*.js $DES/js/
|
|
cp platform/chromium/*.html $DES/
|
|
|
|
# Opera-specific
|
|
echo "*** uBlock0.opera: Copying opera-specific files"
|
|
cp platform/opera/manifest.json $DES/
|
|
|
|
rm -r $DES/_locales/az
|
|
rm -r $DES/_locales/cv
|
|
rm -r $DES/_locales/hi
|
|
rm -r $DES/_locales/hy
|
|
rm -r $DES/_locales/ka
|
|
rm -r $DES/_locales/kk
|
|
rm -r $DES/_locales/mr
|
|
rm -r $DES/_locales/th
|
|
|
|
# Removing WASM modules until I receive an answer from Opera people: Opera's
|
|
# uploader issue an error for hntrie.wasm and this prevents me from
|
|
# updating uBO in the Opera store. The modules are unused anyway for
|
|
# Chromium- based browsers.
|
|
rm $DES/js/wasm/*.wasm
|
|
rm $DES/js/wasm/*.wat
|
|
rm $DES/lib/lz4/*.wasm
|
|
rm $DES/lib/lz4/*.wat
|
|
rm $DES/lib/publicsuffixlist/wasm/*.wasm
|
|
rm $DES/lib/publicsuffixlist/wasm/*.wat
|
|
|
|
echo "*** uBlock0.opera: Generating meta..."
|
|
python tools/make-opera-meta.py $DES/
|
|
|
|
echo "*** uBlock0.opera: Package done."
|