Skip to content

Commit

Permalink
Downgrade node to 1.6 LTS as per stackoverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
atzannes committed Sep 26, 2023
1 parent a0ef538 commit 932e46d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ install-dependencies: $(VIRTUAL_ENV) requirements.lock dev-requirements.lock
pip install --requirement requirements.lock; \
pip install --requirement dev-requirements.lock

nodeenv --python-virtualenv --prebuilt --node=20.7.0 $(NODE_ENV)
nodeenv --python-virtualenv --prebuilt --node=16.20.2 $(NODE_ENV)
npm install --global webpack webpack-cli
cd object_database/web/content
npm install
Expand Down
8 changes: 4 additions & 4 deletions object_database/web/content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"description": "",
"main": "CellHandler.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --require esm ./src/tests/ ./src/components/tests/",
"test-editor": "./node_modules/mocha/bin/mocha --require esm ./src/components/tests/editor-tests.js",
"test-libs": "./node_modules/mocha/bin/mocha --require esm ./src/tests/",
"test-components": "./node_modules/mocha/bin/mocha --require esm ./src/components/tests/",
"test": "./node_modules/.bin/mocha --require esm ./src/tests/ ./src/components/tests/",
"test-editor": "./node_modules/.bin/mocha --require esm ./src/components/tests/editor-tests.js",
"test-libs": "./node_modules/.bin/mocha --require esm ./src/tests/",
"test-components": "./node_modules/.bin/mocha --require esm ./src/components/tests/",
"build": "webpack",
"build:frontend": "webpack",
"frontend": "cd ./src/ && webpack && python ../../frontends/object_database_webtest.py"
Expand Down

0 comments on commit 932e46d

Please sign in to comment.