Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update node version to active LTS (DET-7046) #3932

Merged
merged 8 commits into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ jobs:

lint-react:
docker:
- image: cimg/node:14.16
- image: cimg/node:16.14.2
steps:
- checkout
- react-get-deps
Expand All @@ -1153,7 +1153,7 @@ jobs:
type: boolean
default: false
docker:
- image: cimg/node:14.16
- image: cimg/node:16.14.2
resource_class: large
steps:
- checkout
Expand All @@ -1171,7 +1171,7 @@ jobs:

test-unit-react:
docker:
- image: cimg/node:14.16
- image: cimg/node:16.14.2
environment:
CI: "true"
resource_class: large
Expand All @@ -1186,7 +1186,7 @@ jobs:

build-storybook:
docker:
- image: cimg/node:14.16
- image: cimg/node:16.14.2
steps:
- checkout
- react-get-deps
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ git clone git@github.com:determined-ai/determined.git

- Go (>= 1.18)
- Python (>= 3.6, <= 3.9)
- Node (>= 14.16)
- NPM (>= 6.12)
- Node (>= 16.14)
hamidzr marked this conversation as resolved.
Show resolved Hide resolved
- NPM (>= 8.7)
- Docker (>= 19.03)
- Helm (>= 3.0.0)
- Protoc (>= 3.0)
Expand Down
2 changes: 1 addition & 1 deletion webui/react/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.16.0
16.14.2
2 changes: 1 addition & 1 deletion webui/react/craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
const path = require('path');

const { when } = require('@craco/craco');
const CracoSassResoucesPlugin = require('@jonny1994/craco-sass-resources-loader');
const AntdDayjsWebpackPlugin = require('antd-dayjs-webpack-plugin');
const AntDesignThemePlugin = require('antd-theme-webpack-plugin');
const CracoLessPlugin = require('craco-less');
const CracoSassResoucesPlugin = require('craco-sass-resources-loader');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
const { DefinePlugin } = require('webpack');

Expand Down
Loading