From aa067e39d6e2b5c59544116f3c8d7000e8b3e76b Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Fri, 23 Apr 2021 07:30:45 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 176b553..09793b3 100644 --- a/README.md +++ b/README.md @@ -52,3 +52,8 @@ The repository is separated into two parts. See more information in the [Develop - Show model information (model size, vertex and polygon count) - Export model to various format - Embed viewer in your website + +## External Libraries + +Online 3D Viewer uses these wonderful libraries: [jquery](https://github.com/jquery/jquery), [three.js](https://github.com/mrdoob/three.js), [rhino3dm](https://github.com/mcneel/rhino3dm). + From 53af4ac29e84aa0d8470f092442656b808ac7724 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Fri, 23 Apr 2021 07:31:16 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 09793b3..176b553 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,3 @@ The repository is separated into two parts. See more information in the [Develop - Show model information (model size, vertex and polygon count) - Export model to various format - Embed viewer in your website - -## External Libraries - -Online 3D Viewer uses these wonderful libraries: [jquery](https://github.com/jquery/jquery), [three.js](https://github.com/mrdoob/three.js), [rhino3dm](https://github.com/mcneel/rhino3dm). - From 71059919947526d893dfdc1a5e34fc234c892500 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Mon, 3 May 2021 21:24:16 +0200 Subject: [PATCH 3/3] Remove codecov connection. --- README.md | 1 - appveyor.yml | 1 - codecov.yml | 4 ---- package.json | 4 +--- 4 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 codecov.yml diff --git a/README.md b/README.md index b962992..9e135b1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Online 3D Viewer (https://3dviewer.net) is a free and open source web solution t [![Build status](https://ci.appveyor.com/api/projects/status/exypq43a8kjby5n0?svg=true)](https://ci.appveyor.com/project/kovacsv/online3dviewer) [![Build Status](https://travis-ci.com/kovacsv/Online3DViewer.svg?branch=master)](https://travis-ci.com/kovacsv/Online3DViewer) [![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/kovacsv/Online3DViewer.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/kovacsv/Online3DViewer/context:javascript) -[![codecov](https://codecov.io/gh/kovacsv/Online3DViewer/branch/master/graph/badge.svg?token=xD8Kek6gQz)](https://codecov.io/gh/kovacsv/Online3DViewer) ## Documentation diff --git a/appveyor.yml b/appveyor.yml index 075eb9c..4717929 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,7 +14,6 @@ build_script: test_script: - npm run test - - npm run codecov artifacts: - path: build\final\package\* diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index c31f84a..0000000 --- a/codecov.yml +++ /dev/null @@ -1,4 +0,0 @@ -coverage: - range: 50..80 - round: down - precision: 0 diff --git a/package.json b/package.json index 02406fd..da12b6e 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,11 @@ "mocha": "^8.3.2", "rewire": "^5.0.0", "svgo": "^2.2.2", - "nyc": "^15.1.0", - "codecov": "^3.8.1" + "nyc": "^15.1.0" }, "scripts": { "test": "mocha test", "coverage": "nyc mocha test", - "codecov": "nyc --reporter=lcov mocha test && codecov", "build": "python tools/create_package.py", "update": "python tools/update_includes.py", "svg": "python tools/optimize_svg_files.py"