Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
v0.0.5 (#145)
Browse files Browse the repository at this point in the history
v0.0.5
  • Loading branch information
qarlosalberto authored Nov 5, 2020
1 parent 683ff46 commit 976fd27
Show file tree
Hide file tree
Showing 220 changed files with 10,968 additions and 2,647 deletions.
25 changes: 25 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"jsx": true,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"extends": "eslint:recommended",
"rules": {
"no-console": "warn",
"no-eval": "error",
"semi": "warn",
"eqeqeq": "warn",
"max-len": ["warn", { "code": 120 }],
"no-tabs": "warn",
"curly": "warn"
}
}
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
npm run-script testTemplates
# ****************************************************************************
# ****************************************************************************
test-documenter:
test-stm:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Test
run: |
npm install .
npm run-script testDocumenter
npm run-script test-stm
# ****************************************************************************
# ****************************************************************************
test-ProjectManager:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ jobs:
npm run-script testDocumenter
# ****************************************************************************
# ****************************************************************************
test-stm:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Test
run: |
npm install .
npm run-script test-stm
# ****************************************************************************
# ****************************************************************************
test-ProjectManager:
runs-on: ${{ matrix.os }}
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Python python 3.6
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Test
run: |
npm install .
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ vunit_out
*.gcno
/obj_dir
*.info
*.pb
xsim.dir
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 85,
"arrowParens": "always",
"semi": true,
"tabWidth": 2
}
27 changes: 16 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"description": "Backend for terosHDL IDE",
"main": "src/main.js",
"scripts": {
"testLinter": "cd test; node linter",
"testLinter": "cd test && cd linter && node linter",
"testTemplates": "cd test && cd templates && node cocoTest && node verilatorTest && node vunitRunpy && node tbVhdl && node tbVerilog && node component",
"testDocumenter": "cd test && cd documenter && node stateMachine",
"testProjectManager": "cd test && cd projectManager && node projectManager",
"testDocumenter": "cd test && cd documenter && node documenter",
"test-stm": "cd test && cd documenter && node stateMachine",
"testProjectManager": "cd test && cd project_manager && node project_manager",
"testParser": "cd test && node parser",
"testSuites": "cd test && cd templates && sh runAllSuites.sh",
"nopy": "nopy",
Expand All @@ -19,29 +20,33 @@
"markdown-pdf": "10.0.0",
"svg.js": "2.7.1",
"svgdom": "0.0.21",
"showdown": "1.9.0",
"shelljs": "0.8.3",
"state-machine-cat": "4.1.0",
"sequelize": "x",
"axios": "x",
"nopy": "^0.2.3",
"d3": "5.12.0",
"d3-graphviz": "2.6.1",
"web-tree-sitter": "^0.16.2"
"web-tree-sitter": "^0.16.2",
"temp": "^0.9.0",
"showdown": "^1.9.0",
"nopy": "^0.2.3",
"wavedrom": "*",
"onml": "*",
"json5": "*",
"bit-field": "*"
},
"devDependencies": {
"colors": "x",
"eslint": "*",
"prettier": "*",
"babel-eslint": "*",
"eslint-config-prettier": "*"
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*"
},
"python": {
"execPath": "python3",
"execPath": "python",
"dependencies": {
"wheel": ">=0.34.2",
"vunit_hdl": "==4.2.0",
"git+https://github.com/TerosTechnology/triel.git@master": ""
"vunit_hdl": "==4.2.0"
}
}
}
7 changes: 0 additions & 7 deletions src/beautifuler/.travis.yml

This file was deleted.

45 changes: 0 additions & 45 deletions src/beautifuler/factory.js

This file was deleted.

19 changes: 16 additions & 3 deletions src/documenter/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,22 @@
You should have received a copy of the GNU General Public License
along with Colibri. If not, see <https://www.gnu.org/licenses/>. */

tr:hover {background-color: #ddd;}
tr:hover {background-color: #ddd}
td, th {
border: 1px solid grey
border: 1px solid grey;
}
th { background-color: #ffd78c; }
tr:nth-child(even){background-color: #f2f2f2;}
tr:nth-child(even){background-color: #f2f2f2}
table {width:100%;height:100%;font-size:8px;;page-break-inside: auto}
code {color:#545253;}
h1{font-size:16px;}
h2{font-size:13px;}
h3{font-size:11px;}
h4{font-size:11px;}
h5{font-size:11px;}
h6{font-size:11px;}

p {
font-size: 10px;
}

Loading

0 comments on commit 976fd27

Please sign in to comment.