Rename frontend_tests to typescript_tests

This commit is contained in:
c-bata
2022-03-20 02:03:35 +09:00
parent 3af6444f84
commit 320e73e598
4 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -5,13 +5,13 @@
"description": "Dashboard for Optuna",
"main": "index.js",
"scripts": {
"fmt": "prettier --write \"optuna_dashboard/ts/**/*.{ts,tsx}\" \"frontend_tests/*.{ts,tsx}\"",
"lint": "eslint . --ext .ts,.tsx && prettier --list-different \"optuna_dashboard/ts/**/*.{ts,tsx}\" \"frontend_tests/*.{ts,tsx}\"",
"fmt": "prettier --write \"optuna_dashboard/ts/**/*.{ts,tsx}\" \"typescript_tests/*.{ts,tsx}\"",
"lint": "eslint . --ext .ts,.tsx && prettier --list-different \"optuna_dashboard/ts/**/*.{ts,tsx}\" \"typescript_tests/*.{ts,tsx}\"",
"watch": "NODE_ENV=development TYPESCRIPT_LOADER=esbuild-loader webpack --watch",
"build": "webpack",
"build:dev": "NODE_ENV=development TYPESCRIPT_LOADER=esbuild-loader webpack",
"build:prd": "NODE_ENV=production webpack",
"test": "jest frontend_tests"
"test": "jest typescript_tests"
},
"author": "Masashi Shibata",
"license": "MIT",
+1 -1
View File
@@ -25,7 +25,7 @@
],
"include": [
"./optuna_dashboard/ts/types/**/*",
"./frontend_tests/**/*"
"./typescript_tests/**/*"
],
"types": ["node"]
}