forked from Mirror-Protocol/eth-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmirror
executable file
·37 lines (33 loc) · 805 Bytes
/
mirror
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
# This project had to share components from the Mirror project.
# However, creating a library or a submodule was not preferred.
# This script simply copies the components from the Mirror project.
# yarn add \
# @apollo/client \
# @material-ui/core \
# @tippyjs/react \
# @types/classnames \
# @types/numeral \
# @types/ramda \
# @types/react-router-dom \
# bignumber.js \
# classnames \
# graphql \
# numeral \
# ramda \
# react-router-dom \
# tippy.js \
# use-onclickoutside
rm -rf \
src/airdrop \
src/components \
src/libs \
src/styles \
src/index.scss
cp -r \
../mirror-web-app/src/airdrop \
../mirror-web-app/src/components \
../mirror-web-app/src/libs \
../mirror-web-app/src/styles \
../mirror-web-app/src/index.scss \
src