adjust path
This commit is contained in:
parent
2e56a22f6b
commit
0050bf005a
@ -36,8 +36,8 @@ check: compile
|
|||||||
pnpm run check
|
pnpm run check
|
||||||
|
|
||||||
.PHONY: webextensions
|
.PHONY: webextensions
|
||||||
webextensions: rollup
|
webextension: compile
|
||||||
./webextension/pack.sh
|
cd ./packages/taler-wallet-webextension/ && ./pack.sh
|
||||||
|
|
||||||
.PHONY: integrationtests
|
.PHONY: integrationtests
|
||||||
integrationtests: compile
|
integrationtests: compile
|
||||||
@ -84,10 +84,6 @@ install: compile
|
|||||||
ln -sft $(prefix)/bin $(install_target)/node_modules/taler-wallet-cli/bin/taler-wallet-cli
|
ln -sft $(prefix)/bin $(install_target)/node_modules/taler-wallet-cli/bin/taler-wallet-cli
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: rollup
|
|
||||||
rollup: compile
|
|
||||||
./node_modules/.bin/rollup -c
|
|
||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
./node_modules/.bin/eslint --ext '.js,.ts,.tsx' 'src'
|
./node_modules/.bin/eslint --ext '.js,.ts,.tsx' 'src'
|
||||||
|
@ -8,15 +8,15 @@ devtag=$1
|
|||||||
|
|
||||||
git tag $devtag || true
|
git tag $devtag || true
|
||||||
|
|
||||||
make rollup
|
make compile
|
||||||
|
|
||||||
if [[ ! -d prebuilt ]]; then
|
if [[ ! -d prebuilt ]]; then
|
||||||
git worktree add prebuilt
|
git worktree add -f prebuilt prebuilt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p prebuilt/$devtag
|
mkdir -p prebuilt/$devtag
|
||||||
|
|
||||||
cp dist/standalone/taler-wallet-android.js prebuilt/$devtag/
|
cp packages/taler-wallet-android/dist/taler-wallet-android.js prebuilt/$devtag/
|
||||||
cd prebuilt
|
cd prebuilt
|
||||||
git add -A $devtag
|
git add -A $devtag
|
||||||
git commit -m "prebuilt files for $devtag" || true
|
git commit -m "prebuilt files for $devtag" || true
|
||||||
|
Loading…
Reference in New Issue
Block a user