Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
008e60b0
Commit
008e60b0
authored
Jul 15, 2020
by
aniket-engg
Committed by
Aniket
Jul 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bin files included in build & minor fix
parent
1a524112
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
compiler.ts
libs/remix-solidity/src/compiler/compiler.ts
+1
-1
remix-tests
libs/remix-tests/bin/remix-tests
+1
-1
compiler.ts
libs/remix-tests/src/compiler.ts
+1
-1
workspace.json
workspace.json
+12
-3
No files found.
libs/remix-solidity/src/compiler/compiler.ts
View file @
008e60b0
...
...
@@ -16,7 +16,7 @@ export class Compiler {
event
state
:
CompilerState
constructor
(
public
handleImportCall
:
(
fileurl
:
string
,
cb
)
=>
void
)
{
constructor
(
public
handleImportCall
?
:
(
fileurl
:
string
,
cb
)
=>
void
)
{
this
.
event
=
new
EventManager
()
this
.
state
=
{
compileJSON
:
null
,
...
...
libs/remix-tests/bin/remix-tests
View file @
008e60b0
#!/usr/bin/env node
require
(
'../
dist
/run.js'
);
require
(
'../
src
/run.js'
);
libs/remix-tests/src/compiler.ts
View file @
008e60b0
import
fs
from
'./fileSystem'
import
async
from
'async'
import
path
from
'path'
const
RemixCompiler
=
require
(
'@remix-project/remix-solidity'
).
Compiler
import
{
Compiler
as
RemixCompiler
}
from
'@remix-project/remix-solidity'
import
{
SrcIfc
,
CompilerConfiguration
,
CompilationErrors
}
from
'./types'
function
regexIndexOf
(
inputString
:
string
,
regex
:
RegExp
,
startpos
=
0
)
{
...
...
workspace.json
View file @
008e60b0
...
...
@@ -200,7 +200,10 @@
"tsConfig"
:
"libs/remix-debug/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-debug/package.json"
,
"main"
:
"libs/remix-debug/index.js"
,
"assets"
:
[
"libs/remix-debug/*.md"
]
"assets"
:
[
{
"glob"
:
"rdb"
,
"input"
:
"libs/remix-debug/bin/"
,
"output"
:
"bin/"
},
{
"glob"
:
"*.md"
,
"input"
:
"libs/remix-debug/"
,
"output"
:
"/"
}
]
}
}
}
...
...
@@ -278,7 +281,10 @@
"tsConfig"
:
"libs/remix-simulator/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-simulator/package.json"
,
"main"
:
"libs/remix-simulator/index.js"
,
"assets"
:
[
"libs/remix-simulator/*.md"
]
"assets"
:
[
{
"glob"
:
"ethsim"
,
"input"
:
"libs/remix-simulator/bin/"
,
"output"
:
"bin/"
},
{
"glob"
:
"*.md"
,
"input"
:
"libs/remix-simulator/"
,
"output"
:
"/"
}
]
}
}
}
...
...
@@ -358,7 +364,10 @@
"tsConfig"
:
"libs/remix-tests/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-tests/package.json"
,
"main"
:
"libs/remix-tests/src/index.ts"
,
"assets"
:
[
"libs/remix-tests/*.md"
]
"assets"
:
[
{
"glob"
:
"remix-tests"
,
"input"
:
"libs/remix-tests/bin/"
,
"output"
:
"bin/"
},
{
"glob"
:
"*.md"
,
"input"
:
"libs/remix-tests/"
,
"output"
:
"/"
}
]
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment