-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #313 from chill117/remove-grunt
Removed grunt, now using npm run tasks and make
- Loading branch information
Showing
45 changed files
with
4,604 additions
and
6,980 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.gradle/ | ||
build/ | ||
node_modules/ | ||
public/ | ||
hooks/ | ||
platforms/ | ||
plugins/ | ||
|
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 |
---|---|---|
@@ -0,0 +1,196 @@ | ||
## Usage | ||
# | ||
# $ npm install | ||
# | ||
# And then you can run various commands: | ||
# | ||
# $ make # compile files that need compiling | ||
# $ make clean all # remove target files and recompile from scratch | ||
# | ||
|
||
## Variables | ||
BIN=node_modules/.bin | ||
BUILD=build | ||
BUILD_DEPS=$(BUILD)/deps | ||
BUILD_DEPS_JS=$(BUILD)/dependencies.min.js | ||
BUILD_ALL_JS=$(BUILD)/all.min.js | ||
BUILD_ALL_CSS=$(BUILD)/all.min.css | ||
BUILD_WORKER_BITCOIN_JS=$(BUILD)/workers/bitcoin.min.js | ||
CSS=css | ||
IMAGES=images | ||
JS=js | ||
PUBLIC=www | ||
PUBLIC_ALL_CSS=$(PUBLIC)/css/all.min.css | ||
PUBLIC_ALL_JS=$(PUBLIC)/js/all.min.js | ||
PUBLIC_WORKER_BITCOIN_JS=$(PUBLIC)/js/workers/bitcoin.min.js | ||
SCRIPTS=scripts | ||
|
||
# Targets | ||
# | ||
# The format goes: | ||
# | ||
# target: list of dependencies | ||
# commands to build target | ||
# | ||
# If something isn't re-compiling double-check the changed file is in the | ||
# target's dependencies list. | ||
|
||
# Phony targets - these are for when the target-side of a definition | ||
# (such as "all" below) isn't a file but instead a just label. Declaring | ||
# it as phony ensures that it always run, even if a file by the same name | ||
# exists. | ||
.PHONY: all clean fonts images sounds | ||
|
||
all: config.xml $(PUBLIC)/index.html $(PUBLIC_ALL_CSS) $(PUBLIC_ALL_JS) $(PUBLIC_WORKER_BITCOIN_JS) fonts images sounds | ||
|
||
clean: | ||
# Delete build and output files: | ||
rm -rf $(BUILD) $(PUBLIC) | ||
|
||
fonts: | ||
mkdir -p $(PUBLIC)/fonts/OpenSans | ||
cp -r node_modules/open-sans-fontface/fonts/**/* $(PUBLIC)/fonts/OpenSans/ | ||
|
||
images: | ||
mkdir -p $(PUBLIC)/images/ | ||
cp -r $(IMAGES)/* $(PUBLIC)/images/ | ||
cp -r $(IMAGES)/favicon/* $(PUBLIC)/images/favicon/ | ||
cp -r $(IMAGES)/favicon/favicon.ico $(PUBLIC)/favicon.ico | ||
|
||
sounds: | ||
mkdir -p $(PUBLIC)/sounds | ||
cp -r sounds/* $(PUBLIC)/sounds/ | ||
|
||
config.xml: config-template.xml | ||
node $(SCRIPTS)/copy-config-xml.js | ||
|
||
$(PUBLIC)/index.html: index.html | ||
mkdir -p $(PUBLIC)/ | ||
node $(SCRIPTS)/copy-index-html.js | ||
|
||
$(BUILD)/css/*.min.css: $(CSS)/*.css | ||
mkdir -p $(BUILD)/css | ||
$(BIN)/postcss $^ --ext .min.css --dir $(BUILD)/css | ||
|
||
$(BUILD)/css/views/*.min.css: $(CSS)/views/*.css | ||
mkdir -p $(BUILD)/css/views | ||
$(BIN)/postcss $^ --ext .min.css --dir $(BUILD)/css/views | ||
|
||
APP_CSS_FILES=$(CSS)/fonts.css $(CSS)/reset.css $(CSS)/base.css $(CSS)/buttons.css $(CSS)/forms.css $(CSS)/header.css $(CSS)/menu.css $(CSS)/page.css $(CSS)/payment-method.css $(CSS)/amount.css $(CSS)/secondary-controls.css $(CSS)/number-pad.css $(CSS)/slider.css $(CSS)/result-indicator.css $(CSS)/views/*.css $(CSS)/responsive.css | ||
APP_CSS_MIN_FILES=$(addprefix $(BUILD)/, $(patsubst %.css, %.min.css, $(APP_CSS_FILES))) | ||
$(BUILD_ALL_CSS): $(BUILD)/css/*.min.css $(BUILD)/css/views/*.min.css | ||
for file in $(APP_CSS_MIN_FILES); do \ | ||
cat $$file >> $(BUILD_ALL_CSS); \ | ||
echo "" >> $(BUILD_ALL_CSS); \ | ||
done | ||
|
||
$(PUBLIC_ALL_CSS): $(BUILD_ALL_CSS) | ||
mkdir -p $(PUBLIC)/css/ | ||
cp $(BUILD_ALL_CSS) $(PUBLIC_ALL_CSS) | ||
|
||
$(BUILD_DEPS)/js/bitcoin.js: node_modules/bitcoinjs-lib/src/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify \ | ||
--entry node_modules/bitcoinjs-lib/src/index.js \ | ||
--standalone bitcoin \ | ||
--transform [ babelify --presets [ @babel/preset-env ] ] \ | ||
--outfile $(BUILD_DEPS)/js/bitcoin.js | ||
|
||
$(BUILD_DEPS)/js/bitcoin.min.js: $(BUILD_DEPS)/js/bitcoin.js | ||
$(BIN)/uglifyjs $(BUILD_DEPS)/js/bitcoin.js --mangle reserved=['BigInteger','ECPair','Point'] -o $(BUILD)/js/bitcoin.min.js | ||
|
||
$(BUILD_DEPS)/js/basex.js: node_modules/base-x/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/bech32.js: node_modules/bech32/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/BigInteger.js: node_modules/bigi/lib/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/bs58.js: node_modules/bs58/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/Buffer.js: exports/buffer.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/ecurve.js: node_modules/ecurve/lib/index.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/QRCode.js: node_modules/qrcode/lib/browser.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/querystring.js: exports/querystring.js | ||
mkdir -p $(BUILD_DEPS)/js | ||
$(BIN)/browserify --entry $^ --standalone $$(basename $@ .js) --outfile $@ | ||
|
||
$(BUILD_DEPS)/js/basex.min.js: $(BUILD_DEPS)/js/basex.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/bech32.min.js: $(BUILD_DEPS)/js/bech32.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/BigInteger.min.js: $(BUILD_DEPS)/js/BigInteger.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/bs58.min.js: $(BUILD_DEPS)/js/bs58.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/Buffer.min.js: $(BUILD_DEPS)/js/Buffer.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/ecurve.min.js: $(BUILD_DEPS)/js/ecurve.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/QRCode.min.js: $(BUILD_DEPS)/js/QRCode.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
$(BUILD_DEPS)/js/querystring.min.js: $(BUILD_DEPS)/js/querystring.js | ||
$(BIN)/uglifyjs $^ -o $@ | ||
|
||
DEPS_JS_FILES=node_modules/core-js/client/shim.min.js node_modules/async/dist/async.min.js node_modules/bignumber.js/bignumber.min.js node_modules/jquery/dist/jquery.min.js node_modules/underscore/underscore-min.js node_modules/backbone/backbone-min.js node_modules/backbone.localstorage/build/backbone.localStorage.min.js node_modules/handlebars/dist/handlebars.min.js node_modules/js-sha3/build/sha3.min.js $(BUILD_DEPS)/js/basex.min.js $(BUILD_DEPS)/js/bech32.min.js $(BUILD_DEPS)/js/BigInteger.min.js $(BUILD_DEPS)/js/bs58.min.js $(BUILD_DEPS)/js/Buffer.min.js $(BUILD_DEPS)/js/ecurve.min.js $(BUILD_DEPS)/js/QRCode.min.js $(BUILD_DEPS)/js/querystring.min.js third-party/sjcl/sjcl.min.js third-party/monero/crypto.js node_modules/moment/min/moment-with-locales.min.js | ||
$(BUILD_DEPS_JS): $(DEPS_JS_FILES) | ||
for file in $(DEPS_JS_FILES); do \ | ||
cat $$file >> $(BUILD_DEPS_JS); \ | ||
echo "" >> $(BUILD_DEPS_JS); \ | ||
done | ||
|
||
$(BUILD)/js/**/*.min.js: $(JS)/*.js $(JS)/**/*.js $(JS)/**/**/*.js | ||
for input in $^; do \ | ||
dir=$$(dirname $(BUILD)/$$input); \ | ||
output="$$dir/$$(basename $$input .js).min.js"; \ | ||
mkdir -p $$dir; \ | ||
$(BIN)/uglifyjs -o $$output $$input; \ | ||
done | ||
|
||
APP_JS_FILES=$(JS)/jquery.extend/*.js $(JS)/backbone.extend/*.js $(JS)/handlebars.extend/*.js $(JS)/app.js $(JS)/queues.js $(JS)/util.js $(JS)/device.js $(JS)/screen-saver.js $(JS)/nfc.js $(JS)/sqlite.js $(JS)/lang/*.js $(JS)/abstracts/*.js $(JS)/services/*.js $(JS)/models/*.js $(JS)/collections/*.js $(JS)/views/utility/*.js $(JS)/views/*.js $(JS)/payment-methods/bitcoin.js $(JS)/payment-methods/bitcoin-testnet.js $(JS)/payment-methods/bitcoin-lightning.js $(JS)/payment-methods/litecoin.js $(JS)/payment-methods/monero.js $(JS)/config.js $(JS)/cache.js $(JS)/settings.js $(JS)/sound.js $(JS)/i18n.js $(JS)/router.js $(JS)/init.js | ||
APP_JS_MIN_FILES=$(addprefix $(BUILD)/, $(patsubst %.js, %.min.js, $(APP_JS_FILES))) | ||
JS_FILES=$(BUILD_DEPS_JS) $(APP_JS_MIN_FILES) | ||
$(BUILD_ALL_JS): $(BUILD_DEPS_JS) $(BUILD)/js/**/*.min.js | ||
for file in $(JS_FILES); do \ | ||
cat $$file >> $(BUILD_ALL_JS); \ | ||
echo "" >> $(BUILD_ALL_JS); \ | ||
done | ||
|
||
$(PUBLIC_ALL_JS): $(BUILD_ALL_JS) | ||
mkdir -p $(PUBLIC)/js/ | ||
cp $(BUILD_ALL_JS) $(PUBLIC_ALL_JS) | ||
|
||
WORKER_BITCOIN_JS_FILES=node_modules/async/dist/async.min.js node_modules/bignumber.js/bignumber.min.js node_modules/underscore/underscore-min.js node_modules/js-sha3/build/sha3.min.js $(BUILD_DEPS)/js/bech32.min.js $(BUILD_DEPS)/js/BigInteger.min.js $(BUILD_DEPS)/js/bs58.min.js $(BUILD_DEPS)/js/Buffer.min.js $(BUILD_DEPS)/js/ecurve.min.js third-party/sjcl/sjcl.min.js $(BUILD)/js/workers/bitcoin.min.js | ||
$(BUILD_WORKER_BITCOIN_JS): $(WORKER_BITCOIN_JS_FILES) | ||
mkdir -p $(BUILD)/workers | ||
for file in $(WORKER_BITCOIN_JS_FILES); do \ | ||
cat $$file >> $(BUILD_WORKER_BITCOIN_JS); \ | ||
echo "" >> $(BUILD_WORKER_BITCOIN_JS); \ | ||
done | ||
|
||
$(PUBLIC_WORKER_BITCOIN_JS): $(BUILD_WORKER_BITCOIN_JS) | ||
mkdir -p $(PUBLIC)/js/workers/ | ||
cp $(BUILD_WORKER_BITCOIN_JS) $(PUBLIC_WORKER_BITCOIN_JS) |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.