#7 feature/add-jenkins #9

Merged
primakov merged 11 commits from feature/add-jenkins into master 2024-03-29 13:33:38 +03:00
4 changed files with 2329 additions and 46 deletions
Showing only changes of commit 5cea65ee0f - Show all commits

31
.eslintrc.js Normal file
View File

@ -0,0 +1,31 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": "plugin:react/recommended",
"overrides": [
{
"env": {
"node": true
},
"files": [
".eslintrc.{js,cjs}"
],
"parserOptions": {
"sourceType": "script"
}
}
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"react"
],
"rules": {
}
}

2332
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,9 @@
"start": "start chrome http://ift-b1.kc.inno-js.test/journal.pl && ijl-cli server --port=80", "start": "start chrome http://ift-b1.kc.inno-js.test/journal.pl && ijl-cli server --port=80",
"build": "npm run clean && ijl-cli build --dev", "build": "npm run clean && ijl-cli build --dev",
"build:prod": "npm run clean && ijl-cli build", "build:prod": "npm run clean && ijl-cli build",
"clean": "rimraf dist" "clean": "rimraf dist",
"test": "echo ok",
"eslint": "npx eslint ."
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -17,7 +19,11 @@
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@ijl/cli": "^5.0.3" "@ijl/cli": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1"
}, },
"dependencies": { "dependencies": {
"@chakra-ui/icons": "^2.1.1", "@chakra-ui/icons": "^2.1.1",

View File

@ -136,7 +136,7 @@ const CoursesList = () => {
required={false} required={false}
placeholder="Select Date and Time" placeholder="Select Date and Time"
size="md" size="md"
type="datetime-local" type="date"
/> />
{errors.startDt ? ( {errors.startDt ? (
<FormErrorMessage> <FormErrorMessage>