Skip to content

Commit 9b4a7ce

Browse files
kevinaermarkurtz
authored andcommitted
Removing UI from sparsezoo repo (#88)
* Removing UI from sparsezoo repo * removed js linting from quality
1 parent ff0aae7 commit 9b4a7ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+0
-14972
lines changed

Makefile

-9
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ BUILDDIR := $(PWD)
44
PYCHECKDIRS := examples tests src utils scripts notebooks
55
PYCHECKGLOBS := 'examples/**/*.py' 'scripts/**/*.py' 'src/**/*.py' 'tests/**/*.py' 'utils/**/*.py' setup.py
66
DOCDIR := docs
7-
JSCHECKDIRS := src public
8-
JSCHECKGLOBS := 'public/**/*.html' 'public/**/*.js' 'public/**/*.css' 'src/**/*.html' 'src/**/*.jsx' 'tests/**/*.jsx'
97
MDCHECKGLOBS := 'docs/**/*.md' 'docs/**/*.rst' 'examples/**/*.md' 'notebooks/**/*.md' 'scripts/**/*.md'
108
MDCHECKFILES := CODE_OF_CONDUCT.md CONTRIBUTING.md DEVELOPING.md README.md
119
SPARSEZOO_TEST_MODE := "true"
@@ -44,8 +42,6 @@ quality:
4442
black --check $(PYCHECKDIRS);
4543
isort --check-only $(PYCHECKDIRS);
4644
flake8 $(PYCHECKDIRS);
47-
@echo "Running js/jsx quality checks";
48-
yarn prettier --check $(JSCHECKDIRS);
4945

5046
# style the code according to accepted standards for the repo
5147
style:
@@ -54,8 +50,6 @@ style:
5450
@echo "Running python styling";
5551
black $(PYCHECKDIRS);
5652
isort $(PYCHECKDIRS);
57-
@echo "Running js/jsx styling";
58-
yarn prettier --write $(JSCHECKDIRS);
5953

6054
# run tests for the repo
6155
test:
@@ -74,9 +68,6 @@ docsupdate:
7468

7569
# creates wheel file
7670
build:
77-
@echo "Building UI";
78-
yarn install;
79-
yarn build;
8071
@echo "Building python package";
8172
python3 setup.py sdist bdist_wheel $(BUILD_ARGS)
8273

package.json

-63
This file was deleted.

src/index.jsx

-19
This file was deleted.

src/react-app-env.d.ts

-1
This file was deleted.

src/ui/api/auth.jsx

-36
This file was deleted.

src/ui/api/index.jsx

-20
This file was deleted.

src/ui/api/models.jsx

-63
This file was deleted.

src/ui/api/recipes.jsx

-64
This file was deleted.

src/ui/api/utils.jsx

-58
This file was deleted.

src/ui/app/app-styles.jsx

-26
This file was deleted.

0 commit comments

Comments
 (0)