reverted .ts change in old vue

This commit is contained in:
vabene1111
2024-02-28 17:17:35 +01:00
parent 7817ed2f7e
commit f9efe44e1d
2 changed files with 19 additions and 19 deletions

View File

@@ -9,8 +9,8 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.10']
node-version: ['18']
python-version: ['3.12']
node-version: ['20']
steps:
- uses: actions/checkout@v3

View File

@@ -2,71 +2,71 @@ const BundleTracker = require("webpack-bundle-tracker")
const pages = {
recipe_search_view: {
entry: "./src/apps/RecipeSearchView/main.ts",
entry: "./src/apps/RecipeSearchView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
recipe_view: {
entry: "./src/apps/RecipeView/main.ts",
entry: "./src/apps/RecipeView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
offline_view: {
entry: "./src/apps/OfflineView/main.ts",
entry: "./src/apps/OfflineView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
import_view: {
entry: "./src/apps/ImportView/main.ts",
entry: "./src/apps/ImportView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
import_response_view: {
entry: "./src/apps/ImportResponseView/main.ts",
entry: "./src/apps/ImportResponseView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
export_response_view: {
entry: "./src/apps/ExportResponseView/main.ts",
entry: "./src/apps/ExportResponseView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
export_view: {
entry: "./src/apps/ExportView/main.ts",
entry: "./src/apps/ExportView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
model_list_view: {
entry: "./src/apps/ModelListView/main.ts",
entry: "./src/apps/ModelListView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
edit_internal_recipe: {
entry: "./src/apps/RecipeEditView/main.ts",
entry: "./src/apps/RecipeEditView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
cookbook_view: {
entry: "./src/apps/CookbookView/main.ts",
entry: "./src/apps/CookbookView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
meal_plan_view: {
entry: "./src/apps/MealPlanView/main.ts",
entry: "./src/apps/MealPlanView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
ingredient_editor_view: {
entry: "./src/apps/IngredientEditorView/main.ts",
entry: "./src/apps/IngredientEditorView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
property_editor_view: {
entry: "./src/apps/PropertyEditorView/main.ts",
entry: "./src/apps/PropertyEditorView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
shopping_list_view: {
entry: "./src/apps/ShoppingListView/main.ts",
entry: "./src/apps/ShoppingListView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
space_manage_view: {
entry: "./src/apps/SpaceManageView/main.ts",
entry: "./src/apps/SpaceManageView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
settings_view: {
entry: "./src/apps/SettingsView/main.ts",
entry: "./src/apps/SettingsView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
},
test_view: {
entry: "./src/apps/TestView/main.ts",
entry: "./src/apps/TestView/main.js",
chunks: ["chunk-vendors","locales-chunk","api-chunk"],
}
}