FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
edge-react-gui/scripts/hack-travis.mjs at develop · EdgeApp/edge-react-gui · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EdgeApp
/
edge-react-gui
Public
Notifications
You must be signed in to change notification settings
Fork
293
Star
519
Code
Issues
51
Pull requests
144
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
edge-react-gui
/
scripts
/
hack-travis.mjs
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (37 loc) · 1015 Bytes
Breadcrumbs
edge-react-gui
/
scripts
/
hack-travis.mjs
Copy path
File metadata and controls
45 lines (37 loc) · 1015 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
38
39
40
41
42
43
44
45
import
fs
from
'fs'
function
editFile
(
name
,
cb
)
{
let
text
=
fs
.
readFileSync
(
name
,
'utf8'
)
text
=
cb
(
text
)
fs
.
writeFileSync
(
name
,
text
,
'utf8'
)
}
editFile
(
'package.json'
,
text
=>
text
//
.
replace
(
/
"
e
d
g
e
-
c
u
r
r
e
n
c
y
-
a
c
c
o
u
n
t
b
a
s
e
d
"
.
*
/
,
''
)
.
replace
(
/
"
e
o
s
j
s
-
a
p
i
"
.
*
/
,
''
)
)
fs
.
writeFileSync
(
'src/edge-currency-accountbased.d.ts'
,
`declare module 'edge-currency-accountbased/rn' {
export function makePluginIo(): any
export const debugUri: string
export const pluginUri: string
}
declare module 'edge-currency-accountbased/rn-piratechain' {
export function makePiratechainIo(): any
}
declare module 'edge-currency-accountbased/rn-monero' {
export function makeMoneroIo(): any
}
declare module 'edge-currency-accountbased/rn-zano' {
export function makeZanoIo(): any
}
declare module 'edge-currency-accountbased/rn-zcash' {
export function makeZcashIo(): any
}
`
,
'utf8'
)
editFile
(
'scripts/prepare.sh'
,
text
=>
text
//
.
replace
(
/
n
o
d
e
.
\/
n
o
d
e
_
m
o
d
u
l
e
s
\/
.
b
i
n
\/
w
e
b
p
a
c
k
/
,
''
)
)
Back
|
FazBrowse Home
|
New Git URL